Responses

  • 200 application/json
    Hide response attribute Show response attribute object
GET /api/v1/circles/{circle_uuid}/linked-clients
curl \
 --request GET 'https://api.plannrcrm.com/api/v1/circles/circle_uuid/linked-clients' \
 --header "Authorization: Bearer {OAUTH_ACCESS_TOKEN or PERSONAL_ACCESS_TOKEN}" \
 --header "Content-Type: application/json" \
 --header "Accept: application/json"
Response examples (200)
{
  "data": [
    {
      "name": "Gareth Thompson",
      "uuid": "1fe89d59-be34-4e41-9c36-3a9b8d4fa6d1",
      "email": "gareth@codepotato.co.uk",
      "created_at": "2025-04-30T15:05:02+01:00",
      "updated_at": "2025-04-30T15:05:02+01:00",
      "linked_clients": [
        {
          "name": "Gareth",
          "uuid": "a33305d5-14b4-426e-9dfa-ce79080f03c4",
          "relationship": "Father"
        }
      ]
    }
  ]
}