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": [
"714573ef-2488-4ea3-af3d-ec029bcb35de",
"8ab17fc9-e324-4116-8afd-67d9527556d9",
"ae0212f3-e44b-45a7-80f3-208ab2103b34"
]
}'
Request examples
# Headers
X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}
# Payload
{
"mode": "attach",
"owners": [
"714573ef-2488-4ea3-af3d-ec029bcb35de",
"8ab17fc9-e324-4116-8afd-67d9527556d9",
"ae0212f3-e44b-45a7-80f3-208ab2103b34"
]
}
Response examples (401)
{
"message": "Unauthenticated."
}
Response examples (422)
{
"message": "The given data was invalid.",
"errors": {
"field": [
"The field is invalid."
]
}
}