Version: 202607
List one-time application charges
GET/openapi/2026-07/application_charges
Retrieve a paginated list of one-time application charges for the current store.
Request
Query Parameters
pending: pendingaccepted: accepteddeclined: declinedactive: activeexpired: expiredfrozen: frozencancelled: cancelledpaid_failed: payment failedpaying: paying
cursor string
Cursor for pagination
page_size int32
Number of records per page. Defaults to 8
charges_status string
Filter by charge status:
Responses
- 200
OK
- application/json
- Schema
- Example
Schema
- Array [
- ]
codestring
error code
messagestring
error message
data object
application_charges object[]
List of application charges
idstring
Application charge ID
namestring
Charge name shown to the merchant
pricestring
Charge amount
confirm_urlstring
URL the merchant is redirected to in order to confirm the charge
return_urlstring
URL the merchant returns to after confirming the charge
statusstring
Current status of the application charge
testboolean
Whether this is a test charge
created_atstring
Creation time, in ISO-8601 format
updated_atstring
Last update time, in ISO-8601 format
cursorstring
Cursor for pagination
has_moreboolean
Whether there are more records
{
"code": "string",
"message": "string",
"data": {
"application_charges": [
{
"id": "string",
"name": "string",
"price": "string",
"confirm_url": "string",
"return_url": "string",
"status": "string",
"test": true,
"created_at": "string",
"updated_at": "string"
}
],
"cursor": "string",
"has_more": true
}
}