Get all linked clients for a client

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

Path parameters

  • client_uuid string 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.

    • relationship string

      The relationship to the linked client.

GET /api/v1/client/{client_uuid}/linked-clients
curl \
 --request GET 'https://api.plannrcrm.com/api/v1/client/6ff8f7f6-1eb3-3525-be4a-3932c805afed/linked-clients' \
 --header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
  "name": "Gareth",
  "uuid": "3c404831-c4f5-49fd-847e-1f2c511a5dfc",
  "relationship": "Father"
}