POST

Projects.ColumnsUpdate

Update a project board column. Default rows (To Do and similar) can only have their English/Hebrew labels changed. Custom rows can also change the internal column key. Use data_id from Projects.ColumnsList: default_0 for the first default column, or 0 for the first custom column. This matches the dashboard: first row is Edit-only, custom rows are Edit + Delete.

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

  • Runs the Projects.ColumnsUpdate function and returns JSON.

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

  • Send the bearer token on protected calls with Authorization: Bearer YOUR TOKEN.
  • Send parameters as POST body fields exactly as documented.

Required Parameters

NameTypeSampleExplanation
name_en_value
post
stringQAEnglish column label.
name_he_value
post
stringQALocal-language column label.

Optional Parameters

NameTypeSampleWhat it gives
column_position_value
post
int|string0Custom column JSON index from ColumnsList (0 = first custom column, not To Do). Also accepts default_0 for the first default column.
data_id
post
int|stringdefault_0Same id returned by ColumnsList. Use default_0 / p_to_do for a default column, or 0 for the first custom column.
name_for
post
stringp_to_doDefault-column key from ColumnsList, such as p_to_do.
column_name_value
post
stringqaInternal column key for custom columns only. Ignored for default columns. Use English letters, numbers, and underscore.
color_name_value
post
string#2f80edUpdates column color for custom columns.
display_after
post
stringto_doUpdates placement after another column when supported.

Authentication

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

Authorization: Bearer YOUR TOKEN

Sample Request

{
    "url": "\/app\/Projects.ColumnsUpdate",
    "method": "POST",
    "body": {
        "column_position_value": "0",
        "name_en_value": "QA",
        "name_he_value": "QA",
        "column_name_value": "qa"
    },
    "headers": {
        "Authorization": "Bearer YOUR TOKEN"
    },
    "url_user": "https:\/\/{user}.bull36.com\/app\/Projects.ColumnsUpdate",
    "url_domain": "https:\/\/{domain}\/app\/Projects.ColumnsUpdate"
}

Endpoint

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

Sample Output

{
    "success": 1,
    "message": "Success",
    "data_id": "0",
    "column": {
        "id": 0,
        "source": "custom",
        "can_delete": true
    }
}

JavaScript Example

const token = 'YOUR TOKEN';
const body = new URLSearchParams();
// Custom column (same as before):
body.set('column_position_value', '0');
body.set('name_en_value', 'QA');
body.set('name_he_value', 'QA');
body.set('column_name_value', 'qa');
// Default To Do labels (dashboard first row, Edit only):
// body.set('data_id', 'default_0');
// body.set('name_en_value', 'To Do');
// body.set('name_he_value', 'To Do');
const res = await fetch('/app/Projects.ColumnsUpdate', { method: 'POST', headers: { Authorization: 'Bearer ' + token }, body });
const data = await res.json();
console.log(data);

Error Example

{
    "success": 0,
    "message": "Only use english letter and underscore"
}