Skip to main content
POST
/
v2
/
sign-requests
/
video-translation
/
multipart
For large videos they need to be uploaded via multi parts. This endpoint will return a number of pre-signed urls based off the number of parts
curl --request POST \
  --url https://api.example.com/v2/sign-requests/video-translation/multipart \
  --header 'Authorization: <authorization>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "email": "<string>",
  "firstName": "<string>",
  "lastName": "<string>",
  "companyName": "<string>",
  "uploadSettings": {}
}
'
{
  "application/json": {
    "errors": [
      {
        "message": "Authorization bearer token is missing."
      }
    ]
  }
}
This endpoint is designed for files larger than 30mb using the multipart upload endpoint. This endpoint will return several pre-signed URLs based on the parts of the file. Parts are the number of 5mb chunks in the total file size. This endpoint supports files up to 5TB. Once the multipart endpoint has been completed the /v2/sign-requests/video-translation/multipart/complete endpoint needs to be called. This endpoint will ensure that the parts of the file are merged back together into an editable format.

Headers

Authorization
string
required

Bearer authentication header of the form Bearer , where is your auth token.

Body

application/json
email
string
firstName
string
lastName
string
companyName
string
uploadSettings
object

Response

Successful request sent