Skip to main content
Infrastructure/Infrastructure Misc
GETInfrastructureSince 1.0SynchronousAuth Required

CursorNext

Advance to the next page in an active cursor-based query session.

Execution Availability

Try It Out

Submit a mock request using the current auth context and example-driven inputs.

Query Parameters

Request Inputs

Query Parameters

  • cursorString

    Opaque cursor token from a previous CursorQuery or CursorNext response Opaque cursor token from a previous CursorQuery or CursorNext response

  • pageSizeInteger

    Number of records to return for this page Number of records to return for this page

    Example: 0

Responses

200 OK

On success, this API returns the following response structure.

  • itemsList

    Collection of result items

    Example: (nested array)

  • totalInteger

    Total number of records matching the query

    Example: 200

  • nextCursorString

    Opaque cursor token to use for the next page request

    Example: eyJsYXN0SWQiOiJ2bS0wNTAifQ==

  • hasMoreBoolean

    Whether additional records exist beyond this page

    Example: true

Endpoint

GET/api/v1/resources/cursor-next

/api/v1/resources/cursor-next

Operation ID

CursorNext

Permalink

Request Example

curl -X GET '{host}/api/v1/resources/cursor-next' -H 'Authorization: Bearer {token}'

Response Example

200
{
  "items": [],
  "total": 200,
  "nextCursor": "eyJsYXN0SWQiOiJ2bS0wNTAifQ==",
  "hasMore": true
}

Change History

This API has no change history records yet.

View all change history