Add
Add a new department
Last updated
Add a new department
POST https://{{account_id}}.acquire.io/api/v1/account/department
Add a new department. The following keys must be passed in to the body of the request:
department_list - Array of objects.
name - The department's name. Must be unique.
status - The department's status. Choose "active" to publish the department, choose "disabled" to set the department to draft.
Authorization
string
Bearer {{API_KEY}}
status
string
Department status: "active" | "disabled"
name
string
The department's name. Must be unique.
department_list
array
Array of objects. The department list.
{
"data": [
{
"name": "department",
"status": "active",
"id": 14
}
]
}Last updated
{
"department_list": [
{
"name": "department",
"status": "active"
}
]
}