Update a client link

PUT /api/v1/client/{client_uuid}/linked-clients/{id}

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.

application/json

Body Required

Responses

  • 200 application/json
    Hide response attributes Show response attributes object
    • uuid string

      The unique identifier of the linked client.

    • name string

      The name of the linked client.

    • The relationship to the linked 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": "bcf8d9a5-c2da-4341-baed-7402feb782ce",
  "relationship": "Father"
}