Body
Required
-
customId
string A custom identifier for internal reference by your system (not used by missionX).
-
title
string Required The name of the office.
-
description
string An optional description for the office.
-
address
string An optional office address.
-
country
string An optional office country.
POST
/orgs/offices
curl \
--request POST 'https://open.api.missionx.ai/v1/orgs/offices' \
--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": {}
}