Skip to content

Latest commit

 

History

History
80 lines (55 loc) · 1.24 KB

File metadata and controls

80 lines (55 loc) · 1.24 KB
sidebar_position 15

Add resources to domain

Description

Add resources from other domains to a give domain.

URL

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

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

HTTP method

POST

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) Resource id. Can be retrieved via Get domain's resources.
IncludeDescendants (bool) (Optional) Include sub-resources in the domain. Default is true.
Request example
{

  "Resources": [
    {
      "Id": "6deda6fb-8f56-4c12-ac29-00b3fb7756db",
      "IncludeDescendants": true
	}
  ]
}

Response

Response example
{
    "Errors": []
}
Response code
201 Created