DocsAPIReports

List report submissions

Returns a paginated list of report submissions. Filter by report_id and/or company_id.

GET
/reports/submissions
Query Params

Maximum number of results (1-1000, default: 500)

Example: 500

Number of results to skip (default: 0)

Example: 0

Filter by report ID

Example: 10

Filter by company ID

Example: 42

Credentials

Bearer
curl -X GET "https://api.fundra.com/v1/reports/submissions?report_id=10&company_id=42" \
  -H "Authorization: Bearer <token>"

Successfully retrieved submissions

{
  "data": [
    {
      "id": "1",
      "report_id": "10",
      "company_id": "42",
      "fundraise_id": null,
      "fields": {
        "recent_events": "* Update"
      },
      "submitted_at": "2024-07-10T14:30:00Z",
      "submitted_by": "1",
      "created_at": "2024-07-01T10:00:00Z"
    }
  ],
  "pagination": {
    "total": 50,
    "limit": 100,
    "offset": 0
  }
}