Path parameters

Responses

  • 200 application/json
    Hide response attributes Show response attributes object
    • uuid string

      The UUID of the resource.

    • The timestamp of when the resource was created.

    • The timestamp of when the resource was updated.

    • name string

      The Circle name

    • accounts array[object]

      Accounts belonging to the circle

    • groups array[object]

      Groups the circle belongs to

    • uuid of joint account where circle created from joint account

GET /api/v1/circles/{uuid}
curl \
 --request GET 'https://api.plannrcrm.com/api/v1/circles/uuid' \
 --header "Authorization: Bearer {OAUTH_ACCESS_TOKEN or PERSONAL_ACCESS_TOKEN}" \
 --header "Content-Type: application/json" \
 --header "Accept: application/json" \
 --header "X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}"
Response examples (200)
{
  "name": "Jones Family",
  "uuid": "25cff984-a9bf-452d-ad7c-ccb1c6ff0fb5",
  "groups": [
    {
      "name": "finance",
      "slug": "finance",
      "uuid": "57d6c77d-58a3-416d-ac56-0ea67f96bfe8",
      "created_at": "2025-05-14T18:27:11+01:00",
      "updated_at": "2025-05-14T18:27:11+01:00",
      "participants": {
        "name": {
          "example": "Gareth Thompson",
          "description": "Name of the account"
        },
        "role": {
          "example": "client",
          "description": "Role of the account"
        },
        "uuid": {
          "example": "99541018-4700-4af9-9fcb-0fe156444fc2",
          "description": "UUID of the account"
        },
        "email": {
          "example": "gareth@codepotato.co.uk",
          "description": "Email of the account"
        },
        "last_name": {
          "example": "Thompson",
          "description": "Last name of the account"
        },
        "first_name": {
          "example": "Gareth",
          "description": "First name of the account"
        }
      },
      "participants_count": "3"
    }
  ],
  "accounts": [
    {
      "name": "Gareth Thompson",
      "role": "client",
      "type": "client",
      "uuid": "2653e9c7-78ac-4873-9c7e-7cae95903c04",
      "email": "gareth@codepotato.co.uk",
      "last_name": "Thompson",
      "photo_url": "https://eu.ui-avatars.com/api/?name=Gareth+Thompson",
      "created_at": "2025-05-14T18:27:11+01:00",
      "first_name": "Gareth",
      "updated_at": "2025-05-14T18:27:11+01:00",
      "external_references": "App\\Http\\Resources\\ExternalReferenceResource"
    }
  ],
  "created_at": "2025-05-14T18:27:11+01:00",
  "updated_at": "2025-05-14T18:27:11+01:00",
  "joint_account_uuid": "464d41a6-6221-41c9-9704-a1714acc7e62"
}