Create a client link Run in API Explorer
Ask AI
POST
/api/v1/client/{client_uuid}/linked-clients
curl \
--request POST 'https://api.plannrcrm.com/api/v1/client/6ff8f7f6-1eb3-3525-be4a-3932c805afed/linked-clients' \
--header "Authorization: Bearer $ACCESS_TOKEN" \
--header "Content-Type: application/json" \
--data '{"account_uuid":"801b58dc-ac27-4dcf-9a30-04e1f369c4f9","relationship":"Son","inverse_relationship":"Father"}'
Request examples
{
"account_uuid": "801b58dc-ac27-4dcf-9a30-04e1f369c4f9",
"relationship": "Son",
"inverse_relationship": "Father"
}
Response examples (201)
{
"uuid": "62c7dcc1-9a2b-4b4d-bec7-40c921545aaa",
"name": "Gareth",
"relationship": "Father"
}
Response examples (422)
{
"message": "The given data was invalid.",
"errors": {
"field": [
"The field is invalid."
]
}
}