List addresses
recharge_list_addressesList customer addresses with optional filters (customer, ids, created/updated date ranges). Returns { addresses }. 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 /addresses.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| ids | No | Comma-separated list of address ids to fetch. | |
| 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. | |
| customer_id | No | Filter by customer id. | |
| created_at_max | No | Filter to addresses created on/before this date (ISO 8601). | |
| created_at_min | No | Filter to addresses created on/after this date (ISO 8601). | |
| updated_at_max | No | Filter to addresses updated on/before this date (ISO 8601). | |
| updated_at_min | No | Filter to addresses updated on/after this date (ISO 8601). |