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":["529b98b7-cc5b-4b6a-abfb-cdb8a5c9bb18","af778fb3-2154-4649-b96f-256ba8e02fb5","12038f97-d52a-4291-9bd0-31a8e7545b63"]}'
Request examples
# Headers
X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}
# Payload
{
"mode": "attach",
"owners": [
"529b98b7-cc5b-4b6a-abfb-cdb8a5c9bb18",
"af778fb3-2154-4649-b96f-256ba8e02fb5",
"12038f97-d52a-4291-9bd0-31a8e7545b63"
]
}
Response examples (401)
{
"message": "Unauthenticated."
}