Update a client link
Headers
-
Content-Type
string -
Accept
string
Path parameters
-
client_uuid
string Required -
id
string Required The ID of the linked client.
-
firm
string Required uuid The UUID of the firm.
-
client
string Required uuid The UUID of the client.
-
linked_client
string Required uuid The UUID of the linked client.
Body
Required
-
relationship
string Required The relationship to the linked client.
-
inverse_relationship
string Required The inverse relationship to the client.
PUT
/api/v1/client/{client_uuid}/linked-clients/{id}
curl \
--request PUT 'https://api.plannrcrm.com/api/v1/client/client_uuid/linked-clients/id' \
--header "Authorization: Bearer {OAUTH_ACCESS_TOKEN or PERSONAL_ACCESS_TOKEN}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data '{"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": "cd7491b8-1355-47a2-a1d0-f9818cfcfc4f",
"relationship": "Father"
}