List transactions
GET {{baseUrl}}/transactions
Returns a paginated list of transactions. Use the query parameters to page through results.
Use the include
parameter to include related entities in the response.
Request Params
Key | Datatype | Required | Description |
---|---|---|---|
after | string | Return entities after the specified Paddle ID when working with paginated endpoints. Used in the meta.pagination.next URL in responses for list operations. | |
billed_at | string | Return entities billed at a specific time. Pass an RFC 3339 datetime string, or use [LT] (less than), [LTE] (less than or equal to), [GT] (greater than), or [GTE] (greater than or equal to) operators. For example, billed_at=2023-04-18T17:03:26 or billed_at[LT]=2023-04-18T17:03:26 . | |
collection_mode | string | Return entities that match the specified collection mode. | |
created_at | string | Return entities created at a specific time. Pass an RFC 3339 datetime string, or use [LT] (less than), [LTE] (less than or equal to), [GT] (greater than), or [GTE] (greater than or equal to) operators. For example, created_at=2023-04-18T17:03:26 or created_at[LT]=2023-04-18T17:03:26 . | |
customer_id | string | Return entities related to the specified customer. Use a comma-separated list to specify multiple customer IDs. | |
id | string | Return only the IDs specified. Use a comma-separated list to get multiple entities. | |
include | string | Include related entities in the response. Use a comma-separated list to specify multiple entities. | |
invoice_number | string | Return entities that match the invoice number. Use a comma-separated list to specify multiple invoice numbers. | |
origin | string | Return entities related to the specified origin. Use a comma-separated list to specify multiple origins. | |
order_by | string | Order returned entities by the specified field and direction ([ASC] or [DESC] ). For example, ?order_by=id[ASC] . |
Valid fields for ordering: id
. |
| status
| string | | Return entities that match the specified status. Use a comma-separated list to specify multiple status values. |
| subscription_id
| string | | Return entities related to the specified subscription. Use a comma-separated list to specify multiple subscription IDs. Pass null
to return entities that are not related to any subscription. |
| per_page
| number | | Set how many entities are returned per page. |
| updated_at
| string | | Return entities updated at a specific time. Pass an RFC 3339 datetime string, or use [LT]
(less than), [LTE]
(less than or equal to), [GT]
(greater than), or [GTE]
(greater than or equal to) operators. For example, updated_at=2023-04-18T17:03:26
or updated_at[LT]=2023-04-18T17:03:26
. |
HEADERS
Key | Datatype | Required | Description |
---|---|---|---|
Accept | string |