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>"
}Delete a project.
Deletes the specified project identified by project_id.
This operation removes the project and all associated memories (episodes) permanently from the system. It cannot be undone.
If the project does not exist, a not-found error is returned.
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>"
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Specification model for deleting a project.
Deletion is irreversible and removes the project and all associated data permanently.
The identifier of the project. If empty, the user's default project is used.
^[\p{L}\p{N}_:-]*$Successful Response