Delete project
Delete a project. Compositions and assets are unlinked, not deleted.
DELETE
/api/projects/{id}
Authentication
API Key (cookie: better-auth.session_token)
Path Parameters
id
string
required
path
Example:
"abc123"Responses
200
Project deleted
application/jsonok
boolean
REQUIRED
401
Authentication required
404
Project not found
curl -X DELETE 'https://motioness.com/api/projects/abc123'
const response = await fetch('https://motioness.com/api/projects/abc123', { method: 'DELETE'});const data = await response.json();console.log(data);
import requestsresponse = requests.delete('https://motioness.com/api/projects/abc123')print(response.json())
200
Response
{ "ok": true}
API Playground
Try this endpoint
DELETE
/api/projects/{id}