API reference

Reports API

The Reports API provides access to status updates, statistics, detailed reports, and insights related to your Glider campaigns, invoices, and transactions.

API Endpoint

Secondary path: /v2/report

Example:

<METHOD> https://api.gliderpay.com/v2/report/<action>
Headers:
  ...
Body:
  ...

Query Options

The Reports API supports various query parameters to filter, sort, and group your results:

NameOperatorSyntaxExample
Equal tokey/valuekey = value
Not equal to!key/!valuekey \<> value
Greater than>key/>valuekey > value
Less than<key/<valuekey \< value
Between:key/v1:v2key BETWEEN v1 AND v2
In,key/v1,v2,v3key IN (v1,v2,v3)
LimitLIMITLIMIT/valueLIMIT value
OffsetOFFSETOFFSET/valueOFFSET value
OrderORDERORDER/valueORDER BY value
DirectionDIRECTIONDIRECTION/{ASC,DESC}DIRECTION DESC

To apply these filters, append the options to the end of the API path. For example:

GET /v2/report/batch/50/invoice/LIMIT/10/OFFSET/20