POST
Projects.Delete
Delete a project like dashboard Projects table trash action (Project::delete_project). Removes the project row (created_by=org owner) and its missions. Requires allow_to_delete_missions (owners/admins always allowed). Alias: Projects.Remove.
Permissions
- User must be logged in with a valid bearer token.
- Returned or changed records are limited by the user permissions, team access, folder access, and account settings.
Action
- Removes the requested Projects record when the user has permission.
Push Service
No push is sent because this function only reads data or returns helper information.
Automation
No automation is run for this function.
Special Instructions
- Pass project_id (dashboard data_id).
- Soft archive instead of hard delete: use Projects.Archive with archive=1.
- Messenger cleanup from dashboard is best-effort elsewhere; this route focuses on projects + missions like the SQL path.
Required Parameters
| Name | Type | Sample | Explanation |
|---|---|---|---|
project_idpost | int | 900 | Project id to delete. Aliases: id, data_id. |
Optional Parameters
No optional body parameters are defined for this function.
Authentication
Send the bearer token returned by Login in the request header.
Authorization: Bearer YOUR TOKEN
Sample Request
{
"url": "\/app\/Projects.Delete",
"method": "POST",
"headers": {
"Authorization": "Bearer YOUR TOKEN"
},
"body": {
"project_id": "900"
},
"url_user": "https:\/\/{user}.bull36.com\/app\/Projects.Delete",
"url_domain": "https:\/\/{domain}\/app\/Projects.Delete"
}Endpoint
POST /app/Projects.Delete
POST https://{user}.bull36.com/app/Projects.Delete
POST https://{domain}/app/Projects.DeleteSample Output
{
"success": 1,
"id": 900,
"project_id": 900,
"message": "Your Projects Delete"
}JavaScript Example
const token = 'YOUR TOKEN';
const body = new URLSearchParams({ project_id: '900' });
const res = await fetch('/app/Projects.Delete', { method: 'POST', headers: { Authorization: 'Bearer ' + token }, body });
console.log(await res.json());Error Example
{
"success": 0,
"error": "permission_denied",
"message": "Permission denied to delete projects"
}