Update a client link
Headers
-
Content-Type string
-
Accept string
Path parameters
-
The ID of the linked client.
-
uuid The UUID of the firm.
-
uuid The UUID of the client.
-
uuid The UUID of the linked client.
Body Required
-
The relationship to the linked client.
-
The inverse relationship to the client.
PUT /api/v1/client/{client_uuid}/linked-clients/{id}
curl \
-X PUT https://api.plannrcrm.com/api/v1/client/client_uuid/linked-clients/id \
-H "Authorization: Bearer {OAUTH_ACCESS_TOKEN or PERSONAL_ACCESS_TOKEN}" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{"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
{
"relationship": "Son",
"inverse_relationship": "Father"
}
Response examples (200)
{
"name": "Gareth",
"uuid": "2a94adfd-ed51-476f-b35a-51734fe03183",
"relationship": "Father"
}