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": "85813f20-29ae-474c-ba1a-370a87b1e017",
"email": "gareth@codepotato.co.uk",
"created_at": "2025-04-11T09:31:40+01:00",
"updated_at": "2025-04-11T09:31:40+01:00",
"linked_clients": [
{
"name": "Gareth",
"uuid": "9cc89840-ff5d-45dd-9ec1-97f6866d0f02",
"relationship": "Father"
}
]
}
]
}