Movabase Docs
Public API

Delete file

Deletes a file and all its translations. If `languageCode` is provided, only deletes that language version. Otherwise deletes the file across all languages. Requires `canEditTranslations` permission.

DELETE
/api/projects/{project-id}/files
sb-access-token<token>

Supabase Auth session cookie. Automatically set when users log in via the Movabase web app.

In: cookie

Path Parameters

project-id*string

Project ID

Formatuuid

Request Body

application/json

fileName*string

File name to delete

languageCode?string

If provided, only delete this language version

Response Body

application/json

curl -X DELETE "https://app.movabase.com/api/projects/497f6eca-6276-4993-bfeb-53cbbbba6f08/files" \  -H "Content-Type: application/json" \  -d '{    "fileName": "string"  }'
{
  "success": true
}