JavaScript
const options = {method: 'DELETE', headers: {Authorization: 'Bearer <token>'}}; fetch('https://api.phaseo.app/v1/videos/{video_id}', options) .then(res => res.json()) .then(res => console.log(res)) .catch(err => console.error(err));
{ "id": "<string>", "object": "<string>", "deleted": true }
Delete a video generation request and its stored assets.
Bearer token authentication
The ID of the video generation request.
Video deletion response
Was this page helpful?