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
Name
Type
Description
departmentId
integer
The department ID
Headers
Name
Type
Description
Authorization
string
Bearer {{API_KEY}}
{
"data": {
"id": 14,
"name": "My Depts",
"status": "active",
"users": []
}
}
Body(raw)
{
"name": "My Depts",
"status": "active"
}
Last updated