Skip to main content
POST
/
v1
/
networks
/
policies
/
furnishing
Create a furnishing policy for a (product, network) pair.
curl --request POST \
  --url https://api.example.com/v1/networks/policies/furnishing \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "product_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "network_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "name": "<string>"
}
'
{
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "entity_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "network_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "name": "<string>",
  "source_default_slug": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json

Body of POST /networks/policies/furnishing.

The dialog presents Product and Network independently; the backend resolves source_default_slug from the product catalogue path and creates an empty policy shell (steps and runtime entries are added later via workbook ingest or pipeline persistence).

product_id
string<uuid>
required
network_id
string<uuid>
required
name
string
required

Response

Successful Response

id
string<uuid>
required
entity_id
string<uuid>
required
network_id
string<uuid>
required
name
string
required
source_default_slug
string | null