Recover Deleted Asset
Recovers a deleted asset from the recycle bin.
Body
application/json
- Type: stringasset
_id requiredGumlet Video Asset Id which needs to be recovered.
Responses
- application/json
Request Example for post/video/asset/recover
import Gumlet from '@gumlet/nodejs-sdk';
const client = new Gumlet({
apiKey: process.env['API_KEY'], // defaults to the API_KEY env var
});
await client.videoAssets.recover({
asset_id: '',
});

