POST

Projects.Remove

Alias of Projects.Delete — hard-delete a staff project and its missions.

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

NameTypeSampleExplanation
project_id
post
int900Project 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.Remove",
    "method": "POST",
    "headers": {
        "Authorization": "Bearer YOUR TOKEN"
    },
    "body": {
        "project_id": "900"
    },
    "url_user": "https:\/\/{user}.bull36.com\/app\/Projects.Remove",
    "url_domain": "https:\/\/{domain}\/app\/Projects.Remove"
}

Endpoint

POST /app/Projects.Remove
POST https://{user}.bull36.com/app/Projects.Remove
POST https://{domain}/app/Projects.Remove

Sample 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.Remove', { 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"
}