POST
Projects.ColumnsGet
Return one project board column for editing. Accepts the same ids as the dashboard table: default_0 or p_to_do for a default column (Edit only), or 0 for the first custom 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.ColumnsGet 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
No body parameters are required for this function.
Optional Parameters
| Name | Type | Sample | What it gives |
|---|---|---|---|
data_idpost | int|string | default_0 | Column id from Projects.ColumnsList. default_0 is the first default column (To Do). 0 is the first custom column. |
column_position_valuepost | int|string | 0 | Alias of data_id. Numeric values are custom JSON indexes. |
name_forpost | string | p_to_do | Default-column key, such as p_to_do. |
Authentication
Send the bearer token returned by Login in the request header.
Authorization: Bearer YOUR TOKEN
Sample Request
{
"url": "\/app\/Projects.ColumnsGet",
"method": "POST",
"body": {
"data_id": "0"
},
"headers": {
"Authorization": "Bearer YOUR TOKEN"
},
"url_user": "https:\/\/{user}.bull36.com\/app\/Projects.ColumnsGet",
"url_domain": "https:\/\/{domain}\/app\/Projects.ColumnsGet"
}Endpoint
POST /app/Projects.ColumnsGet
POST https://{user}.bull36.com/app/Projects.ColumnsGet
POST https://{domain}/app/Projects.ColumnsGetSample Output
{
"success": 1,
"data": {
"name_en": "QA",
"column_name": "qa",
"source": "custom",
"can_delete": true
}
}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.ColumnsGet', { method: 'POST', headers: { Authorization: 'Bearer ' + token }, body });
const data = await res.json();
console.log(data);Error Example
{
"success": 0,
"message": "failed"
}