Get

Retrieve a single department

Get

GET https://{{account_id}}.acquire.io/api/v1/account/department/{{departmentId}}

Retrieve a single department. The departmentId must be passed in to the endpoint as a path parameter.

Path Parameters

NameTypeDescription

departmentId

integer

ID of the department

Query Parameters

NameTypeDescription

select

array

Specify which fields you'd like in the response

relations

object

Specify relations with other entities

Headers

NameTypeDescription

Authorization

string

Bearer {{API_KEY}}

{
  "data": {
    "id": 11,
    "name": "moi",
    "status": "active"
  }
}

Last updated