Get recurring application charge
GET/openapi/2025-06/recurring_application_charges/:charge_id
Retrieve a specific recurring application charge by its ID.
Request
Path Parameters
Charge ID
Responses
- 200
OK
- application/json
- Schema
- Example
Schema
error code
error message
data object
recurring_application_charge object
Recurring application charge
Recurring application charge ID
Application ID
Charge name shown to the merchant
Recurring charge amount
Capped amount for usage-based billing
Terms and conditions text shown to the merchant for usage-based billing
URL the merchant returns to after confirming the charge
URL the merchant is redirected to in order to confirm the charge
Current status of the recurring application charge
Number of trial days offered for the subscription
Date when the subscription was activated
Date when the trial period ends
Next billing date
Charge cancellation date
Subscription cancellation date
Whether this is a test charge
Creation time, in ISO-8601 format
Last update time, in ISO-8601 format
Charge interval in days
{
"code": "string",
"message": "string",
"data": {
"recurring_application_charge": {
"id": "string",
"application_id": "string",
"name": "string",
"price": "string",
"capped_amount": "string",
"terms": "string",
"return_url": "string",
"confirmation_url": "string",
"status": "string",
"trial_days": 0,
"activated_on": "string",
"trial_ends_on": "string",
"billing_on": "string",
"cancelled_on": "string",
"cancel_sub_on": "string",
"test": true,
"created_at": "string",
"updated_at": "string",
"charge_interval_days": 0
}
}
}