Get all linked clients for clients of a circle

GET /api/v1/circles/{circle_uuid}/linked-clients

Responses

  • 200 application/json
    Hide response attribute Show response attribute object
    • data array[object]

      Additional properties are allowed.

GET /api/v1/circles/{circle_uuid}/linked-clients
curl \
 -X GET https://api.plannrcrm.com/api/v1/circles/circle_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)
{
  "data": [
    {
      "name": "Gareth Thompson",
      "uuid": "4b12da9f-fc5d-4b1c-811f-794754be7ecb",
      "email": "gareth@codepotato.co.uk",
      "created_at": "2025-01-29T10:30:12+00:00",
      "updated_at": "2025-01-29T10:30:12+00:00",
      "linked_clients": [
        {
          "name": "Gareth",
          "uuid": "0f7194b8-1e67-4e3b-8c15-223385289326",
          "relationship": "Father"
        }
      ]
    }
  ]
}