latestOpenAPI 3.0.02026-08-1535120202.6 KB
f59881dadecd
Designation groups
Unassign designations from a designation group
Use this request to detach one or more designations from a designation group. Each item is processed independently; the response reports the per-item outcome.
post/v1/designation_groups/{id}/designations/unassign
Path parameters
idstring required
Example:LXXXXXXX
Unique identifier of the designation group, formatted as L[A-Z\d]{7}.
Request body
Example request
{
"items": [
{
"id": "EXXXXXXX"
}
],
"livemode": true
}Response
On success, the API returns the overall status and a per-item result array describing which designations were detached.
Example response
{
"results": [
{
"error": {
"code": "designation_not_attached",
"message": "Designation is not attached to this group."
},
"id": "EXXXXXXX"
}
],
"status": "partial"
}