absolutepay (Node SDK) - v0.7.1
    Preparing search index...

    Type Alias PageQuery

    Query options for a keyset-paginated list endpoint.

    Pagination is cursor-based: request a page size with PageQuery.limit, then feed the response's Page.nextCursor back in as PageQuery.before to walk forward. Do not construct or parse the cursor yourself — treat it as opaque.

    type PageQuery = {
        before?: string;
        limit?: number;
        order?: "asc" | "desc";
    }
    Index

    Properties

    Properties

    before?: string

    Opaque cursor identifying where the next page starts — pass the previous page's Page.nextCursor here. Omit (or pass undefined) to fetch the first page.

    limit?: number

    Maximum number of items to return in the page. Optional; the API applies a default/max when omitted.

    order?: "asc" | "desc"

    Sort direction by creation time: "desc" (newest first, the API default) or "asc" (oldest first). Optional.