Get All Reports

GET /api/v1/report

Query parameters

  • filter[uuid] string

    Filter by a comma separated list of UUIDs.

  • filter[report_type_id] string

    Exact filter for type of report to return

  • filter[created_by] string

    list of adviser uuids to filter reports created by these accounts

  • sort string

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

  • 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
      • created_by object
        Hide created_by attributes Show created_by attributes object
        • uuid string
        • created_at string
        • updated_at string
        • type string
        • role string
        • first_name string
        • last_name string
        • name string
        • email string
        • firm string
        • primary_phone_number string
        • primary_email string
        • current_time_entry string
        • assigned_adviser string
        • assigned_administrator string
        • assigned_paraplanner string
        • introduced_by string
        • groups string
        • tags string
        • owners string
        • first_contact_date string
        • next_review_date string
        • previous_review_date string
        • anniversary_review_date string
        • with_login boolean
        • has_joint_account boolean
        • can_be_deleted string
        • joint_account_circle string
        • ownership_percentage integer
        • inactive_at string
        • custom_fields string
        • external_references string
      • report_type_id string
      • status string
      • progress integer
      • files array[object]
        Hide files attributes Show files attributes object
        • uuid string
        • created_at string
        • original_created_at string
        • updated_at string
        • uploaded_at string
        • status string
        • filename string
        • name string
        • extension string
        • type string
        • size string
        • path string
        • last_modified string
        • progress string
        • download_url string
        • folder_name string
        • folder string
        • documentable_type string
        • documentable string
        • navigator object
          Hide navigator attributes Show navigator attributes object
          • model_type string
          • model_uuid string
        • firm string
        • account string
        • tags string
      • folder object
        Hide folder attributes Show folder attributes object
        • uuid string
        • created_at string
        • updated_at string
        • name string
        • slug string
        • path string
        • clients_read boolean
        • clients_write boolean
        • show_client_permissions boolean
        • is_system_folder boolean
        • is_pseudo_folder boolean
        • is_root_folder boolean
        • documentable_type string
        • documentable_uuid string
        • documentable string
        • participants_count integer
        • participants string
        • folders_count integer
        • folders string
        • files_count integer
        • files string
        • parents string
        • ancestors string
        • children string
        • depth integer
        • owned boolean
GET /api/v1/report
curl \
 --request GET 'https://api.plannrcrm.com/api/v1/report' \
 --header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
  "data": [
    {
      "name": "rmar-report-2025-06-26T11:37:10+01:00",
      "uuid": "4d4325d3-77ad-439a-a202-f78bdd6e0ea1",
      "files": [
        {
          "firm": "App\\Http\\Resources\\FirmResource",
          "name": "Welcome to Plannr",
          "path": "Gareth Thompson/Subfolder/Welcome to Plannr.pdf",
          "size": "21691783",
          "tags": "App\\Http\\Resources\\TagResource",
          "type": "type",
          "uuid": "0a69bed4-3f11-4e5f-9d1b-02581a1382d2",
          "folder": "App\\Http\\Resources\\FolderResource",
          "status": "uploaded",
          "account": "App\\Http\\Resources\\MinimalAccountResource",
          "filename": "Welcome to Plannr.pdf",
          "progress": "100",
          "extension": "pdf",
          "navigator": {
            "model_type": "account",
            "model_uuid": "ed85387f-6f6f-40d3-8241-ed23fee6712e"
          },
          "created_at": "2025-06-26T11:37:10+01:00",
          "updated_at": "2025-06-26T11:37:10+01:00",
          "folder_name": "folder 2",
          "uploaded_at": "2025-06-26T11:37:10+01:00",
          "documentable": "Object",
          "download_url": "https://api.plannrcrm.com/file/d881c9eb-e39e-41e4-8e86-637da0b45f15/download",
          "last_modified": "2025-06-26T11:37:10+01:00",
          "documentable_type": "account",
          "original_created_at": "2025-06-26T11:37:10+01:00"
        }
      ],
      "folder": {
        "name": "Important Documents",
        "path": "Codepotato/Important Documents",
        "slug": "important-documents",
        "uuid": "82587c47-5ae0-412e-8ca1-d61c90a4f3fc",
        "depth": 5,
        "files": "App\\Http\\Resources\\FileResource",
        "owned": false,
        "folders": "App\\Http\\Resources\\FolderResource",
        "parents": "App\\Http\\Resources\\FolderResource",
        "children": "App\\Http\\Resources\\FolderResource",
        "ancestors": "App\\Http\\Resources\\FolderResource",
        "created_at": "2025-06-26T11:37:10+01:00",
        "updated_at": "2025-06-26T11:37:10+01:00",
        "files_count": 8,
        "clients_read": true,
        "documentable": "Object",
        "participants": "App\\Http\\Resources\\FolderParticipantResource",
        "clients_write": true,
        "folders_count": 5,
        "is_root_folder": true,
        "is_pseudo_folder": true,
        "is_system_folder": true,
        "documentable_type": "account",
        "documentable_uuid": "account",
        "participants_count": 3,
        "show_client_permissions": true
      },
      "status": "complete",
      "progress": 100,
      "created_at": "2025-06-26T11:37:10+01:00",
      "created_by": {
        "firm": "App\\Http\\Resources\\FirmResource",
        "name": "Gareth Thompson",
        "role": "client",
        "tags": "App\\Http\\Resources\\TagResource",
        "type": "client",
        "uuid": "1eef9745-47a4-4144-bb63-01971f50594b",
        "email": "gareth@codepotato.co.uk",
        "groups": "App\\Http\\Resources\\GroupResource",
        "owners": "App\\Http\\Resources\\AccountResource",
        "last_name": "Thompson",
        "created_at": "2025-06-26T11:37:10+01:00",
        "first_name": "Gareth",
        "updated_at": "2025-06-26T11:37:10+01:00",
        "with_login": true,
        "inactive_at": "2025-06-26",
        "custom_fields": "App\\Http\\Resources\\CustomFieldValueResource",
        "introduced_by": "App\\Http\\Resources\\AccountResource",
        "primary_email": "App\\Http\\Resources\\ContactDetailResource",
        "can_be_deleted": "false",
        "assigned_adviser": "App\\Http\\Resources\\AccountResource",
        "next_review_date": "2025-06-26T11:37:10+01:00",
        "has_joint_account": true,
        "current_time_entry": "App\\Http\\Resources\\TimeEntryResource",
        "first_contact_date": "2025-06-26T11:37:10+01:00",
        "external_references": "App\\Http\\Resources\\ExternalReferenceResource",
        "assigned_paraplanner": "App\\Http\\Resources\\AccountResource",
        "joint_account_circle": "App\\Http\\Resources\\CircleResource",
        "ownership_percentage": 100,
        "previous_review_date": "2025-06-26T11:37:10+01:00",
        "primary_phone_number": "App\\Http\\Resources\\ContactDetailResource",
        "assigned_administrator": "App\\Http\\Resources\\AccountResource",
        "anniversary_review_date": "2025-06-26T11:37:10+01:00"
      },
      "updated_at": "2025-06-26T11:37:10+01:00",
      "report_type_id": "rmar"
    }
  ]
}