Get the processing status of a previously created upload. Only accessible by the DID that created the upload.
Parameters
Output
application/jsondurationMs
integer
Optional
Duration of the processed video in milliseconds. Present when status is 'done'.
error
string
Optional
Error message. Present when status is 'error'.
progress
integer
Optional
Processing progress percentage (0-100). Only meaningful when status is 'processing'.
status
string
Required
Current processing status of the upload.
pending, processing, done, errortracks
array
Optional
Published track records. Present when status is 'done'.
Errors
NotFound
No upload exists with the given ID for the authenticated user. Try It
Requests are sent directly from your browser. Some servers may block requests due to CORS.
View raw schema
{
"type": "query",
"errors": [
{
"name": "NotFound",
"description": "No upload exists with the given ID for the authenticated user."
}
],
"output": {
"schema": {
"type": "object",
"required": [
"status"
],
"properties": {
"error": {
"type": "string",
"description": "Error message. Present when status is 'error'."
},
"status": {
"type": "string",
"description": "Current processing status of the upload.",
"knownValues": [
"pending",
"processing",
"done",
"error"
]
},
"tracks": {
"type": "array",
"items": {
"ref": "#trackRef",
"type": "ref"
},
"description": "Published track records. Present when status is 'done'."
},
"progress": {
"type": "integer",
"maximum": 100,
"minimum": 0,
"description": "Processing progress percentage (0-100). Only meaningful when status is 'processing'."
},
"durationMs": {
"type": "integer",
"description": "Duration of the processed video in milliseconds. Present when status is 'done'."
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"required": [
"uploadId"
],
"properties": {
"uploadId": {
"type": "string",
"description": "The upload ID returned by place.stream.media.createUpload."
}
}
},
"description": "Get the processing status of a previously created upload. Only accessible by the DID that created the upload."
}