Path parameters
-
officeId
string Required The office's unique document ID, i.e.
org.offices[]._id
.
PATCH
/orgs/offices/{officeId}
curl \
--request PATCH 'https://open.api.missionx.ai/v1/orgs/offices/{officeId}' \
--header "Authorization: Bearer $ACCESS_TOKEN" \
--header "Content-Type: application/json" \
--data '{"customId":"string","title":"string","description":"string","address":"string","country":"string"}'
Request examples
{
"customId": "string",
"title": "string",
"description": "string",
"address": "string",
"country": "string"
}
Response examples (200)
{
"_id": "string",
"customId": "string",
"title": "string",
"description": "string",
"address": "string",
"country": "string"
}
Response examples (400)
{
"message": "string",
"code": "string",
"data": {}
}
Response examples (500)
{
"message": "string",
"code": "string",
"data": {}
}