Assign or revoke a role Run in API Explorer
Ask AI
Assign or revoke a role for one or more accounts. The action is determined by the URL parameter. Optionally scope the assignment to a specific target resource (e.g. a network). Processing is best-effort: each assignee is processed independently and the response reports which succeeded and which failed.
POST
/api/v2/roles/{role_uuid}/{action}
curl \
--request POST 'https://api.plannrcrm.com/api/v2/roles/6ff8f7f6-1eb3-3525-be4a-3932c805afed/assign' \
--header "Authorization: Bearer $ACCESS_TOKEN" \
--header "Content-Type: application/json" \
--header "X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}" \
--data '{"assignees":["9452d8f4-3b3b-40c9-85a2-73ade16aa308","d38bc795-e076-47de-b713-2b1afc8bafcf","459f8325-95b9-4b68-a187-c5c367920d22"],"target_type":"network","target_uuid":"01f674cf-04fa-4d29-8785-29cc3f49617a"}'
Request examples
# Headers
X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}
# Payload
{
"assignees": [
"9452d8f4-3b3b-40c9-85a2-73ade16aa308",
"d38bc795-e076-47de-b713-2b1afc8bafcf",
"459f8325-95b9-4b68-a187-c5c367920d22"
],
"target_type": "network",
"target_uuid": "01f674cf-04fa-4d29-8785-29cc3f49617a"
}
Response examples (200)
{
"successful": [
"uuid-1",
"uuid-2"
],
"failed": []
}