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": "c7b41a98-084a-4d48-a8e2-bc667b49ed3b",
"relationship": "Father"
}