Complete Audio Upload

This API must be called after adding audio(s); The add audio call gives you URLs to upload, and you complete a PUT request to those URLs. Once that is done, calling this initiates the process to actually add the subtitle to the video.

Path Parameters
  • asset_ID
    Type: string
    required

    An asset id for the previously created asset.

Body
application/json
  • upload_responses
    Type: array object[]
Responses
  • application/json
  • application/json
Request Example for post/video/assets/{asset_ID}/audio/upload/event
import Gumlet from '@gumlet/nodejs-sdk';

const client = new Gumlet({
  apiKey: process.env['API_KEY'], // defaults to the API_KEY env var
});

const audioUpload = await client.audioUpload.complete('assetId');

console.log(audioUpload);
{}