Skip to content

Delete a Project

Deletes a project. Once deleted, the project stops scanning and any further calls referencing the project ID will return 400 Invalid project ID!.

DELETE /v1/project/delete/{project_id}

Bearer token from /login.

Authorization: Bearer <access_token>
ParameterTypeRequiredDescription
project_idstringYesThe ID of the project to delete.
Delete a project
curl -X DELETE "https://{pinokio-api-url}/v1/project/delete/<project_id>" \
-H "Authorization: Bearer <access_token>"

200 OK — the project was deleted.

CodeCause
422Validation error — project ID missing or malformed.