List Subscription Billing Cycles Transactions
GET https://api-sandbox.epag.io/subscriptions/SUBSCRIPTION_ID/transactions?page=0&size=25&billingCycleId=BILLING_CYCLE_ID
This HTTP GET request is used to get the transactions for a specific billing cycle within a subscription.
Authorization
| Header | Value |
|---|---|
| X-Auth-Token | MY_ACCESS_TOKEN |
Example Request
- Success
Success
curl --location 'https://api-sandbox.epag.io/subscriptions/SUBSCRIPTION_ID/transactions?page=0&size=25&billingCycleId=BILLING_CYCLE_ID'
--header 'X-Auth-Token: MY_ACCESS_TOKEN'
Example Response
Header
Content-Type: application/json
200 OK
{
"transactions": [
{
"status": "PAID",
"payment_country": "BR",
"payment_currency": "BRL",
"order_currency": "BRL",
"order_amount": 15,
"attempt": 0,
"transaction_id": "36f7934a-4dec-4f28-98b5-58b62811dda5",
"transaction_reference_id": "C-d0d34b29-319a-4d06-bd6d-6420b1603541",
"scheduled_at": "2026-02-12T19:18:38.838Z",
"billing_cycle_id": "2b8e7dc7-48ca-4860-8899-391c01e623b5"
}
],
"refresh_token": "MY_ACCESS_TOKEN"
}