GET
/
api
/
v1
/
departments
/
{id}
/
relationships
/
children
Get department children relationship
curl --request GET \
  --url https://api.scholarlysoftware.com/api/v1/departments/{id}/relationships/children \
  --header 'Authorization: Bearer <token>'
{
  "links": {
    "self": "<string>",
    "related": "<string>"
  },
  "data": [
    {
      "type": "<string>",
      "id": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Headers

Authorization
string
required

Bearer token

Path Parameters

id
string
required

Department UUID

Response

200
application/vnd.api+json

no children relationship

The response is of type object.