Skip to content

Latest commit

 

History

History
79 lines (56 loc) · 1.18 KB

File metadata and controls

79 lines (56 loc) · 1.18 KB
sidebar_position 10

Remove blueprints from domain

Description

Removes one or more blueprints from a domain.

URL

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

Parameter Description/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
Parameter Description/Comments
Id (string) Blueprint's id. Can be retrieved via Get domain's blueprints.
Request example ```javascript { "Blueprints": [ { "Id": "369960ab-68ff-4fdc-bf02-054a96879812" }, { "Id": "a0cd0b72-8ed6-41a8-a460-0ab6253aa6af" } ] } ```

Response

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