POST

Customer.Entries.List

List Mongo tabs rows for one entry tab owned by the logged-in customer (cust_id = JWT c_id). Same filters as client/entries (not trash). Staff Entries.List is unchanged.

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.List 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.
  • entry_id / tab_id must be an allowed portal tab for this customer.
  • Default page size 15 (dashboard), max 25.
  • Response includes columns metadata and display values (status_label, select labels).

Required Parameters

NameTypeSampleExplanation
entry_id
post
int7tabs_setting id. Alias: tab_id.

Optional Parameters

NameTypeSampleWhat it gives
page
post
int11-based page. Or use start/offset.
limit
post
int15Page size (max 25).
lang
post
stringenLabel language.

Authentication

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

Authorization: Bearer YOUR TOKEN

Sample Request

{
    "url": "\/app\/Customer.Entries.List",
    "method": "POST",
    "headers": {
        "Authorization": "Bearer YOUR TOKEN"
    },
    "body": {
        "entry_id": "7",
        "page": "1",
        "limit": "15"
    },
    "url_user": "https:\/\/{user}.bull36.com\/app\/Customer.Entries.List",
    "url_domain": "https:\/\/{domain}\/app\/Customer.Entries.List"
}

Endpoint

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

Sample Output

{
    "success": 1,
    "entry_id": 7,
    "allow_edit": 1,
    "count": 33,
    "data": [
        {
            "id": "66aa00000000000000000001",
            "row_id": "66aa00000000000000000001",
            "date_created": "12\/09\/2026 07:41",
            "status_label": "123",
            "data1": "20"
        }
    ]
}

Count Only

Use the matching count route with the same filters when the UI only needs total rows for paging.

{
    "url": "\/app\/Customer.Entries.Count",
    "url_user": "https:\/\/{user}.bull36.com\/app\/Customer.Entries.Count",
    "url_domain": "https:\/\/{domain}\/app\/Customer.Entries.Count",
    "method": "POST",
    "headers": {
        "Authorization": "Bearer YOUR TOKEN"
    },
    "body": {
        "entry_id": "7"
    },
    "sample_output": {
        "success": 1,
        "count": 123
    },
    "notes": {
        "count": "Use the matching count route when available, or count returned rows.",
        "max_limit": 25
    }
}

Count JavaScript

const token = 'YOUR TOKEN';
const body = new URLSearchParams();
body.set('entry_id', '7');

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

JavaScript Example

const token = 'YOUR TOKEN';
const body = new URLSearchParams();
body.set('entry_id', '7');
body.set('page', '1');
body.set('limit', '15');

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

Error Example

{
    "success": 0,
    "message": "Entry was not found or is not allowed."
}