POST
TicketCustomFields.Count
Return the number of ticket custom field definitions (same filters as TicketCustomFields.List).
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 only the count for TicketCustomFields using the same filters as the list function.
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
- This lists field DEFINITIONS (settings), not values on a ticket. Ticket values are sent on Ticket.Add / Ticket.Edit as a-{id}=value.
- Owner or member-admin can change definitions; list is available to authenticated staff.
Required Parameters
No body parameters are required for this function.
Optional Parameters
| Name | Type | Sample | What it gives |
|---|---|---|---|
searchpost | string | order | Filter by name, English/Hebrew label, or type. |
startpost | int | 0 | Offset. Alias: offset. |
limitpost | int | 25 | Page size. Aliases: length, per_page. |
Authentication
Send the bearer token returned by Login in the request header.
Authorization: Bearer YOUR TOKEN
Sample Request
{
"url": "\/app\/TicketCustomFields.Count",
"method": "POST",
"headers": {
"Authorization": "Bearer YOUR TOKEN"
},
"body": {
"limit": "25"
},
"url_user": "https:\/\/{user}.bull36.com\/app\/TicketCustomFields.Count",
"url_domain": "https:\/\/{domain}\/app\/TicketCustomFields.Count"
}Endpoint
POST /app/TicketCustomFields.Count
POST https://{user}.bull36.com/app/TicketCustomFields.Count
POST https://{domain}/app/TicketCustomFields.CountSample Output
{
"success": 1,
"count": 3,
"total_record": 3
}JavaScript Example
const token = 'YOUR TOKEN';
const res = await fetch('/app/TicketCustomFields.Count', { method: 'POST', headers: { Authorization: 'Bearer ' + token } });
console.log(await res.json());Error Example
{
"success": 0,
"message": "Organization not found."
}