Get all linked clients for clients of a circle
Headers
-
Content-Type string
-
Accept string
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": "d2975dbd-d711-4ee2-966a-7754e8fa1af4",
"email": "gareth@codepotato.co.uk",
"created_at": "2025-03-10T22:05:27+00:00",
"updated_at": "2025-03-10T22:05:27+00:00",
"linked_clients": [
{
"name": "Gareth",
"uuid": "001de078-5ae7-422b-b14d-8a94433b9140",
"relationship": "Father"
}
]
}
]
}