POST

Customer.Entries.FormData

Return allowed entry tabs, nav groups, column defs, and allow_edit for the logged-in customer. Same scope as client/entries (folder match + optional client_portal_entries allowlist). Alias: Customer.Entries.Tabs.

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 Customer.Entries.FormData 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

  • Requires Customer.Login token and module_entries.
  • Empty user_detail_2.client_portal_entries => all folder-matching tabs; otherwise only listed tab ids.
  • allow_edit=1 only when user_detail_2.client_portal_allow_edit_entries=1.
  • Staff Entries.* / EntriesSettings.* are unchanged.

Required Parameters

No body parameters are required for this function.

Optional Parameters

NameTypeSampleWhat it gives
lang
post
stringenLabel language en|he. Alias: site_lang.

Authentication

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

Authorization: Bearer YOUR TOKEN

Sample Request

{
    "url": "\/app\/Customer.Entries.FormData",
    "method": "POST",
    "headers": {
        "Authorization": "Bearer YOUR TOKEN"
    },
    "body": {
        "lang": "en"
    },
    "url_user": "https:\/\/{user}.bull36.com\/app\/Customer.Entries.FormData",
    "url_domain": "https:\/\/{domain}\/app\/Customer.Entries.FormData"
}

Endpoint

POST /app/Customer.Entries.FormData
POST https://{user}.bull36.com/app/Customer.Entries.FormData
POST https://{domain}/app/Customer.Entries.FormData

Sample Output

{
    "success": 1,
    "allow_edit": 1,
    "nav": [
        {
            "type": "tab",
            "tab_id": 7,
            "title": "main main main tab",
            "count": 33
        }
    ],
    "data": [
        {
            "entry_id": 7,
            "title": "main main main tab",
            "count": 33,
            "columns": []
        }
    ]
}

JavaScript Example

const token = 'YOUR TOKEN';
const body = new URLSearchParams();
body.set('lang', 'en');

const res = await fetch('/app/Customer.Entries.FormData', {
  method: 'POST',
  headers: { Authorization: `Bearer ${token}` },
  body
});
const data = await res.json();
console.log(data);

Error Example

{
    "success": 0,
    "error": "module_disabled"
}