Manage owners for the shared client. Run in API Explorer
Ask AI
POST
/api/v1/client/{client_uuid}/owners
curl \
--request POST 'https://api.plannrcrm.com/api/v1/client/6ff8f7f6-1eb3-3525-be4a-3932c805afed/owners' \
--header "Authorization: Bearer $ACCESS_TOKEN" \
--header "Content-Type: application/json" \
--header "X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}" \
--data '{"mode":"attach","owners":["3eb3fbb3-341e-4973-b1e0-af9495789dd5","c2950515-2356-4fdf-b8fb-b76d2af98ef8","4074c3be-f595-4483-8f46-dd6ed6c18d1e"]}'
Request examples
# Headers
X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}
# Payload
{
"mode": "attach",
"owners": [
"3eb3fbb3-341e-4973-b1e0-af9495789dd5",
"c2950515-2356-4fdf-b8fb-b76d2af98ef8",
"4074c3be-f595-4483-8f46-dd6ed6c18d1e"
]
}
Response examples (401)
{
"message": "Unauthenticated."
}
Response examples (422)
{
"message": "The given data was invalid.",
"errors": {
"field": [
"The field is invalid."
]
}
}