Skip to main content

List all issued command

POST 

/commands/list

List all issued commands. This API also returns expired commands.

note

This API can list maximum of 100 commands in a single API call.

Apply filter to get list of filtered commands. Filter is optional

Request

Body

    filter object
    issuedAfter string
    issuedBefore string
    node string
    status string[]

    Possible values: [pending, received, processing, success, failure, invalidated]

    identifier string
    limit integer
    offset integer

Responses

Success

Schema
    success boolean
    error string
    errorcode integer
    count integer
    data object[]
  • Array [
  • id string
    identifier string
    status string

    Possible values: [received, processing, success, failure, pending, invalidated]

    updatedOn integer
    expired boolean
    expiry integer
    issuedAt integer
  • ]
  • next string
Loading...