Add or remove members from a business unit Run in API Explorer
Ask AI
Bulk add or remove account members from a business unit. When adding, accounts already assigned to a different business unit are reassigned to this one.
POST
/api/v1/business-units/{business_unit_uuid}/members/{action}
curl \
--request POST 'https://api.plannrcrm.com/api/v1/business-units/6ff8f7f6-1eb3-3525-be4a-3932c805afed/members/add' \
--header "Authorization: Bearer $ACCESS_TOKEN" \
--header "Content-Type: application/json" \
--data '{"accounts":["57bda664-5852-498f-9ceb-094c93870111","288e98e4-9ae1-4078-9450-3890a5bf83e1","2f3f0828-bbc7-40b1-9339-a4357c6b0a0f"]}'
Request examples
{
"accounts": [
"57bda664-5852-498f-9ceb-094c93870111",
"288e98e4-9ae1-4078-9450-3890a5bf83e1",
"2f3f0828-bbc7-40b1-9339-a4357c6b0a0f"
]
}
Response examples (200)
{
"successful": [
"uuid-1",
"uuid-2"
],
"failed": []
}
Response examples (422)
{
"message": "The given data was invalid.",
"errors": {
"field": [
"The field is invalid."
]
}
}