Get all document packs

GET /api/v1/document-pack/document-pack

Headers

  • X-PLANNR-ACCOUNT-UUID string

Query parameters

  • filter[name] string

    Filter by name. This is a fuzzy search.

  • filter[is_template] boolean

    Filter document packs that are templates

  • sort string

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

  • per_page integer

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

Responses

  • 200 application/json
    Hide response attribute Show response attribute object
    • data array[object]
      Hide data attributes Show data attributes object
      • uuid string
      • created_at string
      • updated_at string
      • name string
      • description string
      • is_template string
GET /api/v1/document-pack/document-pack
curl \
 --request GET 'https://api.plannrcrm.com/api/v1/document-pack/document-pack' \
 --header "Authorization: Bearer $ACCESS_TOKEN" \
 --header "X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}"
Response examples (200)
{
  "data": [
    {
      "name": "Name of Document Pack",
      "uuid": "dfb0cca4-f128-4e64-9dbe-d1a3cb363242",
      "created_at": "2025-06-25T15:10:45+01:00",
      "updated_at": "2025-06-25T15:10:45+01:00",
      "description": "Description of Document Pack",
      "is_template": "Is Document Pack a template"
    }
  ]
}