POST
Fields.List
Return customer field settings for building add/edit/customer screens. This includes fixed customer fields, custom customer fields, field order, folder-specific field lists, dashboard fields, pinned dashboard fields, and add-form settings.
Permissions
- Only the organization owner or a manager can manage or list field settings.
Action
- Returns Fields rows as JSON.
- Supports the documented filters and paging fields.
- List responses are capped at 25 rows per call.
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.
- For paging, do not request more than 25 rows.
- For total rows, call the matching Count function with the same filters.
Required Parameters
No body parameters are required for this function.
Optional Parameters
| Name | Type | Sample | What it gives |
|---|---|---|---|
limitpost | int | 25 | Maximum rows to return. Values above 25 are capped. |
Authentication
Send the bearer token returned by Login in the request header.
Authorization: Bearer YOUR TOKEN
Sample Request
{
"url": "\/app\/Fields.List",
"method": "POST",
"headers": {
"Authorization": "Bearer YOUR TOKEN"
},
"body": [],
"url_user": "https:\/\/{user}.bull36.com\/app\/Fields.List",
"url_domain": "https:\/\/{domain}\/app\/Fields.List"
}Endpoint
POST /app/Fields.List
POST https://{user}.bull36.com/app/Fields.List
POST https://{domain}/app/Fields.ListSample Output
{
"success": 1,
"data": {
"fixed_fields": [
"name",
"phone",
"email",
"company",
"source"
],
"custom_fields": [
{
"name": "a-1710000000",
"en": "Budget",
"he": "Budget",
"type": "number",
"show_hide": "1"
}
],
"extra_fields_order": [
"a-1710000000"
],
"folder_fields": {
"1": [
"name",
"phone",
"a-1710000000"
]
}
}
}Count Only
Use the matching count route with the same filters when the UI only needs total rows for paging.
{
"url": "\/app\/Fields.Count",
"url_user": "https:\/\/{user}.bull36.com\/app\/Fields.Count",
"url_domain": "https:\/\/{domain}\/app\/Fields.Count",
"method": "POST",
"headers": {
"Authorization": "Bearer YOUR TOKEN"
},
"body": [],
"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();
const res = await fetch('https://{domain}/app/Fields.Count', {
method: 'POST',
headers: { Authorization: `Bearer ${token}` },
body
});
const data = await res.json();
console.log(data.count);JavaScript Example
const token = 'YOUR TOKEN';
const res = await fetch('/app/Fields.List', {
method: 'POST',
headers: { Authorization: `Bearer ${token}` }
});
const data = await res.json();
console.log(data);Error Example
{
"success": "0",
"error": "permission_denied",
"message": "Permission denied to list customer fields"
}