GET
/
api
/
v1
/
departments
/
{id}
/
children
Get children of a specific department
curl --request GET \
  --url https://api.scholarlysoftware.com/api/v1/departments/{id}/children \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "<string>",
      "type": "<string>",
      "attributes": {
        "name": "<string>",
        "is_root": true
      }
    }
  ]
}

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 found

The response is of type object.