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

NameTypeSampleWhat it gives
search
post
stringorderFilter by name, English/Hebrew label, or type.
start
post
int0Offset. Alias: offset.
limit
post
int25Page 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.Count

Sample 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."
}