GET
/
api
/
v1
/
departments
/
{id}
Get a specific department
curl --request GET \
  --url https://api.scholarlysoftware.com/api/v1/departments/{id} \
  --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

department found

The response is of type object.