1. File API
  2. Delete One
DELETE

/v1/file/{file_id}

Authorization*
curl --request DELETE \
     --url https://api.mixpeek.com/v1/file/{file_id} \
     --header 'Authorization: AUTH_VALUE'

Request

file_idRequired
string

File ID of the file you’d like removed.

Response

okRequired
boolean

To indicate if it was successful or not.

import requests

url = "https://api.mixpeek.com/v1/file?file_id=123"

headers = {'Authorization': 'API_KEY'}

requests.request("DELETE", url, headers=headers)
  { "ok": true }