Get all linked clients for a client

GET /api/v1/client/{client_uuid}/linked-clients

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.

GET /api/v1/client/{client_uuid}/linked-clients
curl \
 -X GET 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"
Response examples (200)
{
  "name": "Gareth",
  "uuid": "ab8c4904-04ac-483d-b037-8e60014ea8a6",
  "relationship": "Father"
}