cURL
curl --request POST \ --url https://api.vidnavigator.com/v1/file/{file_id}/cancel \ --header 'X-API-Key: <api-key>'
{ "status": "success", "data": { "file_id": "<string>", "file_name": "<string>", "message": "<string>" } }
Cancel an ongoing file upload/processing
file_id
curl -X POST "https://api.vidnavigator.com/v1/file/file_abc123/cancel" \ -H "X-API-Key: YOUR_API_KEY"
{ "status": "success", "data": { "file_id": "file_abc123", "file_name": "processing_video.mp4", "message": "File cancelled successfully" } }
API key authentication. Include your VidNavigator API key in the X-API-Key header.
The ID of the file to cancel
File cancelled successfully
The response is of type object.
object