Skip to main content
POST
/
v2
/
projects
/
delete
Delete Project
curl --request POST \
  --url https://api.memmachine.ai/v2/projects/delete \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "project_id": ""
}
'
{
  "code": 123,
  "message": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json

Specification model for deleting a project.

Deletion is irreversible and removes the project and all associated data permanently.

project_id
string
default:""

The identifier of the project. If empty, the user's default project is used.

Pattern: ^[\p{L}\p{N}_:-]*$

Response

Successful Response