POST

Projects.Update

Update a project like dashboard save_project when project_id is set. Scoped by created_by=org owner. Also updates linked missions lead_id and mission_dependency. Alias: Projects.Edit.

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

  • Updates the requested Projects record after validating permissions and input fields.

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

  • Requires project_id of an org project (created_by = owner).
  • Same body fields as Projects.Add plus project_id.
  • Does not change user_id / created_by (dashboard behavior).

Required Parameters

NameTypeSampleExplanation
project_id
post
int900Project id. Aliases: id, data_id, update_id.
project_name
post
stringWebsite redesign v2Project name. Alias: name.

Optional Parameters

NameTypeSampleWhat it gives
client_id
post
int12614595Customer id. Aliases: customer_id, cust_id.
organizations_user
post
mixed[47,52]Team member ids. Aliases: member, member_ids, team_members.
default_user
post
mixed[47]Default assignee user ids.
credentials
post
stringftp loginCredentials text.
note
post
stringUpdated notesProject note.
tags
post
mixed1,2Tag ids.
private_project
post
int01 = private project.
use_as_template
post
int0Template flag.
allow_add_mission
post
int0Allow add mission flag.
show_hide_tag
post
int1Show/hide tags.
mission_dependency
post
int0Mission dependency flag.
done
post
int0Done flag.
custom_fields
post
mixed{"project-priority":"high"}Custom fields object or project-* keys.

Authentication

Send the bearer token returned by Login in the request header.

Authorization: Bearer YOUR TOKEN

Sample Request

{
    "url": "\/app\/Projects.Update",
    "method": "POST",
    "headers": {
        "Authorization": "Bearer YOUR TOKEN"
    },
    "body": {
        "project_id": "900",
        "project_name": "Website redesign v2",
        "client_id": "12614595"
    },
    "url_user": "https:\/\/{user}.bull36.com\/app\/Projects.Update",
    "url_domain": "https:\/\/{domain}\/app\/Projects.Update"
}

Endpoint

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

Sample Output

{
    "success": 1,
    "id": 900,
    "project_id": 900,
    "message": "Your Projects Details Update"
}

JavaScript Example

const token = 'YOUR TOKEN';
const body = new URLSearchParams({ project_id: '900', project_name: 'Website redesign v2', client_id: '12614595' });
const res = await fetch('/app/Projects.Update', { method: 'POST', headers: { Authorization: 'Bearer ' + token }, body });
console.log(await res.json());

Error Example

{
    "success": 0,
    "error": "not_found",
    "message": "Project not found"
}