v1
latestOpenAPI 3.0.02026-07-2422987517.5 KBList recurring charges
Returns a paginated list of the company's recurring charges (subscription-like expected charges), each including its merchant and vendor_card summaries and computed fields (finalized?, days_since_expected, overdue?, amount). Sorting by the virtual field next_expected_at is supported. Non-admin callers see charges they own, charges on their cards, or all company charges if they hold card_transactions_manage.
Query parameters
If all the transactions where in an array, this would represent the index of the first item returned in the response
If all the transactions where in an array, this would represent the index of the last item returned in the response
The order method, which can be ascending or descending
The field used to sort, the example illustrates a response that would be sorted by the creation date
Filter by active state.
Filter by merchant.
Filter by card.
Headers
UUID of the company on whose behalf the request is made. Required for every Accounting endpoint. See The company-id header for details on how to obtain a value for this header and the error responses to expect when it is missing or invalid.
Response
Paginated list of recurring charges
Example response
[
{
"id": "3e5f7a9c-1d2b-4c6e-8a9f-2b4c5d6e7f8a",
"company_id": "550e8400-e29b-41d4-a716-446655440000",
"amount_cents": 9900,
"amount": {
"amount": "9900.0",
"formatted": "$9.900",
"cents": "9900.0",
"currency_iso": "CLP"
},
"currency": "CLP",
"frequency": "monthly",
"source": "manual",
"start_date": "2025-01-01",
"active": true
}
]