Skip to main content

Get Subscription Billing Cycles By ID

GET https://api-sandbox.epag.io/subscriptions/billing-cycles/BILLING_CYCLE_ID

This HTTP GET request is used to get one specific billing cycle for a subscription.

Authorization

HeaderValue
X-Auth-TokenMY_ACCESS_TOKEN

Example Request

Success
    curl --location 'https://api-sandbox.epag.io/subscriptions/billing-cycles/BILLING_CYCLE_ID'
--header 'X-Auth-Token: MY_ACCESS_TOKEN'

Example Response

Header
  Content-Type: application/json
200 OK
    {
"id": "2b8e7dc7-48ca-4860-8899-391c01e623b5",
"status": "PAID",
"created_at": "2026-02-12T19:12:41.860Z",
"end_date": "2026-02-21",
"due_date": "2026-02-15",
"subscription_id": "7de7f868-48b9-4833-a43a-6ae18e0094a6",
"open_date": "2026-02-04",
"close_date": "2026-02-12",
"cycle_number": 1,
"refresh_token": "MY_ACCESS_TOKEN"
}