Skip to main content

managed_blueprints_create

POST 

/api/v3//managed/blueprints/

Blueprint instances

Request

Body

required

    name stringrequired

    Possible values: non-empty

    path string
    context
    enabled boolean
    content string

Responses

Schema

    pk uuidrequired
    name stringrequired
    path string
    context
    last_applied date-timerequired
    last_applied_hash stringrequired
    status BlueprintInstanceStatusEnum (string)required

    Possible values: [successful, warning, error, orphaned, unknown]

    enabled boolean
    managed_models string[]required
    metadata required
    content string
curl -L '/api/v3/managed/blueprints/' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer <TOKEN>' \
-d '{
"name": "string",
"path": "string",
"context": {},
"enabled": true,
"content": "string"
}'
Request Collapse all
Base URL
/api/v3
Auth
Body required
{
  "name": "string",
  "path": "string",
  "context": {},
  "enabled": true,
  "content": "string"
}