POST
CustomerStatuses.Get
Return one Customer Status. Default rows: name_for or cust_dynamic_name_id. Custom rows: data_name.
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
- Returns CustomerStatuses information as JSON for the UI.
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 |
|---|---|---|---|
name_forpost | string | No Answer | Default status key: new, active, in work, No Answer, Answer. |
cust_dynamic_name_idpost | int | 1118 | Default status id from cust_dynamic_name. |
data_namepost | string | fff121 | Custom status name. |
Authentication
Send the bearer token returned by Login in the request header.
Authorization: Bearer YOUR TOKEN
Sample Request
{
"url": "\/app\/CustomerStatuses.Get",
"method": "POST",
"headers": {
"Authorization": "Bearer YOUR TOKEN"
},
"body": {
"name_for": "No Answer"
},
"url_user": "https:\/\/{user}.bull36.com\/app\/CustomerStatuses.Get",
"url_domain": "https:\/\/{domain}\/app\/CustomerStatuses.Get"
}Endpoint
POST /app/CustomerStatuses.Get
POST https://{user}.bull36.com/app/CustomerStatuses.Get
POST https://{domain}/app/CustomerStatuses.GetSample Output
{
"success": 1,
"source": "customer_statuses",
"data": {
"name_en": "No Answer 1",
"name_for": "No Answer",
"can_delete": false
}
}JavaScript Example
const token = 'YOUR TOKEN';
const body = new URLSearchParams({ name_for: 'No Answer' });
const res = await fetch('/app/CustomerStatuses.Get', { method: 'POST', headers: { Authorization: 'Bearer ' + token }, body });
console.log(await res.json());Error Example
{
"success": 0,
"message": "CustomerStatuses.Get not found"
}