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/json
ok 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}
Ask a question... ⌘I