Remove resources from domain
Description
Removes resources/sub-resources from domain by id.
HTTP method
DELETE
Request
URL
http://{Admin API IP}:{port#}/api/v1/domains/{id}/resources
Headers
Example header format:
Authorization: Basic <authorization token returned from the login method>
Content-Type: application/json
Parameter | Description/Comments |
---|---|
ID |
(string) Domain's ID. |
Request body
Parameter | Description/Comments |
---|---|
Id | (string) Resource id (not ParentId). Can be retrieved via Get domain's resources. |
RemoveAssocations | (bool) Unbooks the resource in the domain. Default is true. |
Request example
{
"Resources": [
{
"Id": "<resource id>",
"RemoveAssociations": false
},
{
"Id": "<resource id>",
"RemoveAssociations": false
}
]
}
Response
Response example
{
"Errors": []
}
Response code
200 OK