Query parameters

  • Filter by a comma separated list of UUIDs.

  • Filter by model type. Valid types are [client, case, plan]

  • Filter only active custom default folders

  • per_page integer

    Number of results to return with pagination (Default 15. Max 500).

  • sort string

    Field to sort by. Valid fields are [created_at, updated_at]. Negative sign to denote DESC. Defaults to '-created_at'.

Responses

  • 200 application/json
    Hide response attribute Show response attribute object
GET /api/v1/custom-default-folder
curl \
 --request GET 'https://api.plannrcrm.com/api/v1/custom-default-folder' \
 --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)
{
  "data": [
    {
      "uuid": "a62a8494-c0dd-4803-aacc-10fb8233a314",
      "model": "client",
      "case_type": {
        "name": "Mortgage Plan",
        "uuid": "1e2f3bfd-56f5-4c5d-9905-01a9142db837",
        "created_at": "2025-04-22T13:44:21+01:00",
        "updated_at": "2025-04-22T13:44:21+01:00"
      },
      "is_active": true,
      "parameter": "client",
      "structure": [
        {
          "name": "Documents",
          "children": [
            {
              "name": "Contracts",
              "children": []
            },
            {
              "name": "Emails",
              "children": []
            }
          ]
        },
        {
          "name": "Notes",
          "children": []
        }
      ],
      "created_at": "2025-04-22T13:44:21+01:00",
      "updated_at": "2025-04-22T13:44:21+01:00",
      "description": "Shared client default folders",
      "for_existing": true
    }
  ]
}