Path parameters
-
departmentId
string Required The department's unique document ID, i.e.
org.departments[]._id
.
Body
Required
-
customId
string A custom identifier for internal reference by your system (not used by missionX).
-
title
string The name of the department.
-
description
string An optional description for the department.
PATCH
/orgs/departments/{departmentId}
curl \
--request PATCH 'https://open.api.missionx.ai/v1/orgs/departments/{departmentId}' \
--header "Authorization: Bearer $ACCESS_TOKEN" \
--header "Content-Type: application/json" \
--data '{"customId":"string","title":"string","description":"string"}'
Request examples
{
"customId": "string",
"title": "string",
"description": "string"
}
Response examples (200)
{
"_id": "string",
"customId": "string",
"title": "string",
"description": "string"
}
Response examples (400)
{
"message": "string",
"code": "string",
"data": {}
}
Response examples (500)
{
"message": "string",
"code": "string",
"data": {}
}