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":["36879bef-41f7-4ade-a8ce-e753d033483f","e0e639ad-aabe-4c7f-963b-7696d3e265e4","ccc3f38f-e635-4cf9-9a35-60c2be014b63"],"target_type":"network","target_uuid":"bd3efa8c-a5ad-4170-a903-5c15d182bdca"}'
Request examples
# Headers
X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}
# Payload
{
"assignees": [
"36879bef-41f7-4ade-a8ce-e753d033483f",
"e0e639ad-aabe-4c7f-963b-7696d3e265e4",
"ccc3f38f-e635-4cf9-9a35-60c2be014b63"
],
"target_type": "network",
"target_uuid": "bd3efa8c-a5ad-4170-a903-5c15d182bdca"
}
Response examples (200)
{
"successful": [
"uuid-1",
"uuid-2"
],
"failed": []
}
Response examples (422)
{
"message": "The given data was invalid.",
"errors": {
"field": [
"The field is invalid."
]
}
}