POST

Projects.ColumnsAdd

Add a custom project board column.

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.ColumnsAdd 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
stringבדיקהHebrew column label.
column_name_value
post
stringqaInternal column key. Use English letters, numbers, and underscore.

Optional Parameters

NameTypeSampleWhat it gives
color_name_value
post
string#2f80edColumn color.
display_after
post
stringto_doPlaces the column 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.ColumnsAdd",
    "method": "POST",
    "body": {
        "name_en_value": "QA",
        "name_he_value": "בדיקה",
        "column_name_value": "qa"
    },
    "headers": {
        "Authorization": "Bearer YOUR TOKEN"
    },
    "url_user": "https:\/\/{user}.bull36.com\/app\/Projects.ColumnsAdd",
    "url_domain": "https:\/\/{domain}\/app\/Projects.ColumnsAdd"
}

Endpoint

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

Sample Output

{
    "success": 1,
    "message": "Success"
}

JavaScript Example

const token = 'YOUR TOKEN';
const body = new URLSearchParams();
// Fill body fields from the Sample Request JSON above.
const res = await fetch('/app/Projects.ColumnsAdd', { 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"
}