Utility Methods
Resume paginated results
wss://honeycluster.io
rpc method: marker

Utility method to resume paginated results using an opaque marker from a previous response.

Try it now
Response · marker WS Response
{
  "result": {
    "marker": "0000000000000000000000000000000000000000000000000000000000000000"
  },
  "status": "success",
  "type": "response",
  "id": 1
}
Request Message
marker WS Request
application/json
Resume paginated results
FieldTypeDescription
command
required
string
WebSocket command name
id
object
Client-supplied identifier to correlate requests with responses.
api_version
object
API version for the response format. Version 2 is the default for rippled 2.0+.
Example
Json
{
  "command": "marker",
  "id": 1
}
Response Message
marker WS Response
application/json
WebSocket response for marker
FieldTypeDescription
result
object
status
enum<string>
Available
successerror
type
string
id
stringnumber
Echo of the client-provided correlation ID
Example
Json
{
  "result": {
    "marker": "0000000000000000000000000000000000000000000000000000000000000000"
  },
  "status": "success",
  "type": "response",
  "id": 1
}