v32

latestOpenAPI 3.1.0raw.githubusercontent.com2026-05-151,1412,2144.5 MB
reports

List generated reports

Retrieve a list of generated reports.

You can use query parameters to filter, sort, and paginate the results.

get/billing/org/v1/reports

Query parameters

client_idinteger
created_afterstring date-time

Filter by creation date-time.

Returns items created after the specified date-time (ISO 8601/RFC 3339 format, UTC.)

You can specify a date with a time separated by a space, or just a date.

Examples:

  • &created_after=2025-05-15
  • &created_after=2025-05-15 12:00:00
  • &created_after=2025-05-15T12:00:00Z
created_beforestring date-time

Filter by creation date-time.

Returns items created before the specified date-time (ISO 8601/RFC 3339 format, UTC.)

You can specify a date with a time separated by a space, or just a date.

Examples:

  • &created_before=2025-05-15
  • &created_before=2025-05-15 12:00:00
  • &created_before=2025-05-15T12:00:00Z
created_onstring date
limitinteger

Number of results to return per page. Maximum is 100.

offsetinteger

The initial index from which to return the results.

orderingstring[]

Ordering of the results.

Default sort order is ascending. Put - before value for descending sort order: -id.

For sorting by multiple parameters write them as comma separated string: -client_id,id.

  • uuid - Uuid
  • -uuid - Uuid (descending)
  • created_at - Created at
  • -created_at - Created at (descending)
  • client_id - Client id
  • -client_id - Client id (descending)
  • task_type - Task type
  • -task_type - Task type (descending)
  • status - Status
  • -status - Status (descending)
  • template - Template
  • -template - Template (descending)
statusstring[]

Filter by file task statuses. Can be multiple.

  • Pending - pending
  • InProgress - in_progress
  • Completed - completed
  • Failed - failed
  • Cancelled - cancelled
templatestring

Filter by the type of the report template. Allows partial matches.

uuidstring

Filter by task UUID. Supports partial matches starting from the beginning.

Response

Request successful.

countinteger required
nextstring uri nullable
previousstring uri nullable

Example response

{
  "count": 123,
  "next": "http://api.example.org/accounts/?offset=400&limit=100",
  "previous": "http://api.example.org/accounts/?offset=200&limit=100"
}