List one-times
recharge_list_onetimesList one-time (non-recurring) line items with optional filters (customer, address, created/updated date ranges). Returns { onetimes }. Pagination is cursor-based: pass limit (default 50, max 250) and read next_cursor / previous_cursor from the response. IMPORTANT: when paging with cursor, Recharge accepts ONLY limit alongside it — omit every other filter on cursor requests. Recharge REST: GET /onetimes.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Max results per page (1-250, default 50). | |
| cursor | No | Pagination cursor (next_cursor / previous_cursor from a prior response). Use it ALONE with `limit` — omit all other filters on cursor requests. | |
| address_id | No | Filter by address id. | |
| customer_id | No | Filter by customer id. | |
| created_at_max | No | Filter to one-times created on/before this date (ISO 8601). | |
| created_at_min | No | Filter to one-times created on/after this date (ISO 8601). | |
| updated_at_max | No | Filter to one-times updated on/before this date (ISO 8601). | |
| updated_at_min | No | Filter to one-times updated on/after this date (ISO 8601). |