Update

Update a department.

Update

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

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

Path Parameters

NameTypeDescription

departmentId

integer

The department ID

Headers

NameTypeDescription

Authorization

string

Bearer {{API_KEY}}

{
  "data": {
    "id": 14,
    "name": "My Depts",
    "status": "active",
    "users": []
  }
}

Body(raw)

{
  "name": "My Depts",
  "status": "active"
}

Last updated