Skip to content

Latest commit

 

History

History
78 lines (53 loc) · 1.05 KB

File metadata and controls

78 lines (53 loc) · 1.05 KB
sidebar_position 13

Remove groups from domain

Description

Removes one or more blueprints from a domain.

URL

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

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) Group's id. Can be retrieved via Get all groups.
Request example
{
  "Groups": [
    {
      "Id": 1
    }
  ]
}

Response

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