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

KeyDatatypeRequiredDescription
afterstringReturn entities after the specified Paddle ID when working with paginated endpoints. Used in the meta.pagination.next URL in responses for list operations.
billed_atstringReturn 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_modestringReturn entities that match the specified collection mode.
created_atstringReturn 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_idstringReturn entities related to the specified customer. Use a comma-separated list to specify multiple customer IDs.
idstringReturn only the IDs specified. Use a comma-separated list to get multiple entities.
includestringInclude related entities in the response. Use a comma-separated list to specify multiple entities.
invoice_numberstringReturn entities that match the invoice number. Use a comma-separated list to specify multiple invoice numbers.
originstringReturn entities related to the specified origin. Use a comma-separated list to specify multiple origins.
order_bystringOrder 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

KeyDatatypeRequiredDescription
Acceptstring