Check Enhancement Status
You'll need to check the status of the job.
Headers
Key
Value
Content-Type
application/json
X-API-KEY
<Your API Key Here>
Request
GET
/api/v1/audiaize/unify/{id}/statusFrom the Start Enhancement API get the Job ID and pass it in the GET request
Response
{
"id": {id},
"status": "running"
}{
"id": {id},
"status": "completed"
}200 OK: The request was successful, and the details of the completed job are returned.400 Bad Request: The server could not understand the request due to invalid syntax.401 Unauthorized: Authentication is required and has failed or has not yet been provided.403 Forbidden: The request was a valid request, but the server is refusing action.404 Not Found: The requested resource (job ID) was not found.500 Internal Server Error: An unexpected condition was encountered.
Keep polling the API till you get the status: completed
Last updated