Find refills by IDs
GET/refills
Find multiple refills by their IDs
Request
Query Parameters
ids[] integer[]required
Array of IDs
Responses
- 200
- 422
Successful response
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
- Array of refill IDs that were not found
- Returned only if at least one refill ID was not found
data
object[]
Array of refills
id int32
status RefillStatus (string)
Possible values: [Processing
, In progress
, Completed
, Rejected
, Awaiting
, Processed
, Failed
, Error
]
Refill status
created_at date-time
errors int32[]
{
"data": [
{
"id": 0,
"status": "Processing",
"created_at": "2024-07-29T15:51:28.071Z"
}
],
"errors": [
null
]
}
Validation error
Loading...