Get all linked clients for clients of a circle
Headers
-
Content-Type
string -
Accept
string
Path parameters
-
circle_uuid
integer Required
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": "1c0c94f4-403f-41af-88f3-05ab0e0bdf05",
"email": "gareth@codepotato.co.uk",
"created_at": "2025-06-17T14:20:17+01:00",
"updated_at": "2025-06-17T14:20:17+01:00",
"linked_clients": [
{
"name": "Gareth",
"uuid": "0f588d37-8a0e-4aa6-9210-4747e6ac67f5",
"relationship": "Father"
}
]
}
]
}