List payment intents
Supports offset pagination (limit + offset) and cursor pagination
(starting_after). When has_more is true, the response includes
next_cursor — the last returned intent’s id; pass it as
starting_after to fetch the next page. Prefer the cursor form for
walking large or active lists: rows created while you page shift
offset-based pages (skipping or repeating rows), but never a cursor.
The two forms cannot be combined in one request.
Authorizations
A merchant secret key (sk_…) sent as Authorization: Bearer <key>.
Query Parameters
Page size (default 20, max 100).
1 <= x <= 100Number of records to skip.
x >= 0Cursor: a payment intent id (typically the previous response's next_cursor). Returns results strictly after it, newest first. Cannot be combined with offset.
Response
A list of payment intents, newest first. client_secret is always null here.

