Skip to main content
Version: 2024.1

Remove blueprints from domain

Description

Removes one or more blueprints from a domain.

URL

http://{Admin API IP}:{port#}/api/v1/domains/{id}/blueprint

ParameterDescription/Comments
ID(string) Domain's ID. Can be retrieved via Get all domains.

HTTP method

DELETE

Request

Headers

Example header format:

Authorization: Basic <authorization token returned from the login method>

Content-Type: application/json

Request body
ParameterDescription/Comments
Id(string) Blueprint's id. Can be retrieved via Get domain's blueprints.
Request example
{
"Blueprints": [
{
"Id": "369960ab-68ff-4fdc-bf02-054a96879812"
},
{
"Id": "a0cd0b72-8ed6-41a8-a460-0ab6253aa6af"
}
]
}

Response

Response example
{
"Errors": []
}
Response code
200 OK