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":["81532f10-b90e-4d17-a3ff-94fa44a2ef0a","9ef89a06-9eb1-419d-a1d3-c63522a7d43d","5b0071bf-68cc-4cb9-ad41-8eea0595ab88"]}'
Request examples
# Headers
X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}
# Payload
{
"mode": "attach",
"owners": [
"81532f10-b90e-4d17-a3ff-94fa44a2ef0a",
"9ef89a06-9eb1-419d-a1d3-c63522a7d43d",
"5b0071bf-68cc-4cb9-ad41-8eea0595ab88"
]
}
Response examples (401)
{
"message": "Unauthenticated."
}