validation.invalid_cursor
The pagination cursor is malformed or was signed for a different filter context.
validation.invalid_cursor is returned when the cursor query parameter on a paginated list endpoint cannot be decoded or does not pass the signature check for the current filter set. Cursors are opaque, signed, and bound to the filter parameters used when they were issued.
The cursor was modified, truncated, or was issued with different filter parameters than the current request. Changing the sort order, date range, or other filters while reusing a cursor from a prior request causes this error.
Start pagination from the first page (omit the cursor parameter) and use the cursor returned in the response for subsequent pages with the same filter parameters.
{
"error": {
"code": "validation.invalid_cursor",
"message": "pagination cursor is invalid or expired",
"request_id": "req_01900000abc"
}
}