POST
EntriesSettings.Get
Return one entry/tab setting definition by id. This returns the tab/settings record, including whether rows must select an entry customer, not row data inside the tab.
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
- Reads one entry/tab setting definition.
- Returns names, visibility, sharing, and field/settings data when stored.
Push Service
No socket push is sent because this function only reads settings.
Automation
No automation is run because this function only reads settings.
Special Instructions
- Use this route only when editing or inspecting one entry/tab setting.
- Use Entries.Get with entry_id and row id when opening one row inside a selected tab.
Required Parameters
| Name | Type | Sample | Explanation |
|---|---|---|---|
idpost | int | 7 | Entry/tab id to fetch. |
Optional Parameters
No optional body parameters are defined for this function.
Authentication
Send the bearer token returned by Login in the request header.
Authorization: Bearer YOUR TOKEN
Sample Request
{
"url": "\/app\/EntriesSettings.Get",
"method": "POST",
"body": {
"id": "7"
},
"headers": {
"Authorization": "Bearer YOUR TOKEN"
},
"url_user": "https:\/\/{user}.bull36.com\/app\/EntriesSettings.Get",
"url_domain": "https:\/\/{domain}\/app\/EntriesSettings.Get"
}Endpoint
POST /app/EntriesSettings.Get
POST https://{user}.bull36.com/app/EntriesSettings.Get
POST https://{domain}/app/EntriesSettings.GetSample Output
{
"success": 1,
"data": {
"id": 745,
"tab_name_en": "example 1",
"tab_name_he": "45",
"folders": [
"3"
],
"status": {
"17845458326a5e02280a638": {
"label_en": "Open",
"color_name": "#ffa500",
"sub_status": [
{
"sub_status_label": "Waiting",
"sub_stauts_color": "#cccccc",
"sub_status_key": "17845458336a5e02280a639"
}
]
}
},
"fields": {
"17845458326a5e02280a638": {
"name": "17845458326a5e02280a638",
"field_no": 1,
"date": "2026-07-20 11:10:32",
"input_type": "text",
"label_en": "Note",
"label_he": "Note",
"default_value": ""
}
}
}
}JavaScript Example
const token = 'YOUR TOKEN';
const body = new URLSearchParams({ id: '745' });
const res = await fetch('/app/EntriesSettings.Get', {
method: 'POST',
headers: { Authorization: `Bearer ${token}` },
body
});
const data = await res.json();
console.log(data);Error Example
{
"success": 0,
"message": "Record was not found."
}