Get multiple refill status
GET/?action=refill_status
Response example
[
{
"refill": 1,
"status": "Completed"
},
{
"refill": 2,
"status": "Rejected"
},
{
"refill": 3,
"status": {
"error": "Refill not found"
}
}
]
Request
Query Parameters
key stringrequired
API key
action stringrequired
refill_status
refills stringrequired
Refill IDs separated by comma
Responses
- 200
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
refill int32
Refill ID
status RefillStatus (string)
Possible values: [Processing
, In progress
, Completed
, Rejected
, Awaiting
, Processed
, Failed
, Error
]
Refill status
[
{
"refill": 0,
"status": "Processing"
}
]
Loading...