Create a client link
Headers
-
Content-Type string
-
Accept string
Path parameters
-
uuid The UUID of the firm.
-
uuid The UUID of the client.
Body Required
-
The client that you would like to be linked.
-
The relationship to the linked client.
-
The inverse relationship to the client.
POST
/api/v1/client/{client_uuid}/linked-clients
curl \
-X POST https://api.plannrcrm.com/api/v1/client/client_uuid/linked-clients \
-H "Authorization: Bearer {OAUTH_ACCESS_TOKEN or PERSONAL_ACCESS_TOKEN}" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{"account_uuid":"string","relationship":"Son","inverse_relationship":"Father"}'
Request examples
# Headers
Authorization: Bearer {OAUTH_ACCESS_TOKEN or PERSONAL_ACCESS_TOKEN}
Content-Type: application/json
Accept: application/json
# Payload
{
"account_uuid": "string",
"relationship": "Son",
"inverse_relationship": "Father"
}
Response examples (201)
{
"name": "Gareth",
"uuid": "af2d0c41-32ff-4d04-b7c9-f9437efb9c96",
"relationship": "Father"
}