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": "1d8996c6-2507-4d83-82c0-36d3ed105bc3",
"email": "gareth@codepotato.co.uk",
"created_at": "2025-05-21T13:38:00+01:00",
"updated_at": "2025-05-21T13:38:00+01:00",
"linked_clients": [
{
"name": "Gareth",
"uuid": "25838ec6-d8ae-4931-9f23-f24469372577",
"relationship": "Father"
}
]
}
]
}