Skip to main content

managed_blueprints_partial_update

PATCH 

/api/v3//managed/blueprints/:instance_uuid/

Blueprint instances

Request

Path Parameters

    instance_uuid uuidrequired

    A UUID string identifying this Blueprint Instance.

Body

    name string

    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 -X PATCH '/api/v3/managed/blueprints/:instance_uuid/' \
-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
Parameters
— pathrequired
Body
{
  "name": "string",
  "path": "string",
  "context": {},
  "enabled": true,
  "content": "string"
}