Get Request History
This section allows you to get your video request history for the past 7 days
This endpoint will return your history for the past 7 days.
Authorizations
X-API-KeystringRequired
Responses
200
Successful response
application/json
401
Unauthorized
application/json
403
Forbidden
application/json
500
Internal server error
application/json
get
/video/historyGET /video/history HTTP/1.1
Host: api.topazlabs.com
X-API-Key: YOUR_API_KEY
Accept: */*
{
"result": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"userId": 1,
"status": "requested",
"ts": {
"requested": 1,
"accepted": 1,
"initializing": 1,
"preprocessing": 1,
"processing": 1,
"postprocessing": 1,
"complete": 1,
"canceling": 1,
"canceled": 1,
"failed": 1
},
"lastEventTs": 1,
"estimates": {
"cost": [
10,
12
],
"time": [
600,
700
]
},
"transactions": [
{
"operation": "reserve",
"amount": 1
}
],
"error": {
"message": "text"
}
}
]
}Last updated