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
- application/json
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
- 2XX
Success
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
success boolean
error string
errorcode integer
count integer
data object[]
id string
identifier string
status string
Possible values: [received
, processing
, success
, failure
, pending
, invalidated
]
updatedOn integer
expired boolean
expiry integer
issuedAt integer
next string
{
"success": true,
"error": "string",
"errorcode": 0,
"count": 0,
"data": [
{
"id": "string",
"identifier": "string",
"status": "received",
"updatedOn": 0,
"expired": true,
"expiry": 0,
"issuedAt": 0
}
],
"next": "string"
}
Loading...