Version: 202506
List recurring application charge transactions
GET/openapi/2025-06/recurring_application_charges/:charge_id/transactions
Returns the transaction history for a recurring application charge.
Request
Path Parameters
charge_id stringrequired
Charge ID
Query Parameters
cursor string
Cursor for pagination
page_size int32
Number of records per page. Defaults to 10
transaction_status string
Filter by transaction status
paid_at_min string
Filter transactions paid at or after this time, ISO-8601 format (e.g., 2018-11-02T12:30:10Z)
paid_at_max string
Filter transactions paid at or before this time, ISO-8601 format (e.g., 2018-11-02T12:30:10Z)
Responses
- 200
OK
- application/json
- Schema
- Example
Schema
- Array [
- ]
codestring
error code
messagestring
error message
data object
transactions object[]
List of transactions
idstring
Transaction ID
charge_idstring
ID of the application charge this transaction belongs to
pricestring
Transaction amount
usage_pricestring
Usage charge price
statusstring
Current status of the transaction
paid_atstring
Time when the transaction was paid
cursorstring
Cursor for pagination
has_moreboolean
Whether there are more records
{
"code": "string",
"message": "string",
"data": {
"transactions": [
{
"id": "string",
"charge_id": "string",
"price": "string",
"usage_price": "string",
"status": "string",
"paid_at": "string"
}
],
"cursor": "string",
"has_more": true
}
}