Get all linked clients for clients of a circle
Headers
-
Content-Type string
-
Accept string
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"
}
]
}
]
}