List Checkouts
Lists the account’s custom checkouts (summaries only): ids, names, statuses, and which one is the default
ARCHIVED checkouts. Each item’s id is the checkout_code used by the Fetch and Publish endpoints.
Pagination is opt-in: without page or size the response is a bare array with every matching checkout; sending either switches the response to a paginated envelope (data + pagination, where total is the full filtered count).Authorizations
Merchant public API key. Found in Yuno dashboard → Settings → API Keys.
Merchant private secret key, paired with the public key. Never embed in client-side code.
UUID of the merchant account scope for the request. The tenant is resolved only from this header.
Query Parameters
Case-insensitive contains filter on the checkout name. LIKE metacharacters (% and _) match literally.
Case-insensitive contains filter on the checkout identifier.
Filter by status. Accepts one or several values (ORed): repeat the parameter or send a comma-separated list (status=PUBLISHED,ARCHIVED). Invalid values are rejected with 400. Absent: all statuses.
PUBLISHED, NOT_PUBLISHED, ARCHIVED Inclusive lower bound on created_at (ISO-8601 instant, e.g. 2026-05-01T00:00:00Z).
Inclusive upper bound on created_at (ISO-8601 instant).
Inclusive lower bound on updated_at (ISO-8601 instant).
Inclusive upper bound on updated_at (ISO-8601 instant).
Page number (1-based). Opt-in pagination: sending page or size switches the response to the paginated envelope. Default 1. Non-numeric values are rejected with 400.
x >= 1Page size. Opt-in pagination: sending page or size switches the response to the paginated envelope. Default 25, capped at 100. Non-numeric values are rejected with 400.
1 <= x <= 100Response
The account's checkouts. A bare array when page and size are absent; a paginated envelope (data + pagination) when either is present. Items carry the same 7 fields in both shapes. pagination.total is the full filtered count, not the page's row count.
- Without pagination · object[]
- With pagination · object
Checkout identifier (UUID). Use it as the checkout_code in the fetch and publish endpoints.
Checkout name.
Checkout description.
Checkout status.
PUBLISHED, NOT_PUBLISHED, ARCHIVED Whether this checkout is the account's default.
Creation timestamp (ISO-8601).
Last update timestamp (ISO-8601).