POST

TicketCustomFields.Edit

Update a ticket custom field definition. The storage name (a-{id}) is kept so existing Ticket.Add values still match. Same form fields as TicketCustomFields.Add. Requires owner or member-admin.

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

  • Updates the requested TicketCustomFields record after validating permissions and input fields.

Push Service

Pushes event ticketcustomfields.updated to users who should see this change.

Automation

No automation is run for this function.

Special Instructions

  • Identify the field with name=a-1731562297 (preferred) or edit_id (dashboard index) plus optional sub_edit_id for a grouped field.
  • Omit a property to leave it unchanged. name_en/name_he stay required only when you send them empty.
  • To move a field into a group, send grp_name_he / grp_name_en or group_name.

Required Parameters

No body parameters are required for this function.

Optional Parameters

NameTypeSampleWhat it gives
name
post
stringa-1731562297Field id to update. Aliases: field_name, update_field_name.
edit_id
post
int0Top-level index. Alias: data_id.
sub_edit_id
post
int0Child index in group_data. Alias: sub_data_id.
type
post
stringtextField type.
name_en
post
stringORDER_IDEnglish label.
name_he
post
stringORDER_IDHebrew label.
show_hide
post
int11 show, 0 hide.
require
post
int01 required.

Authentication

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

Authorization: Bearer YOUR TOKEN

Sample Request

{
    "url": "\/app\/TicketCustomFields.Edit",
    "method": "POST",
    "headers": {
        "Authorization": "Bearer YOUR TOKEN"
    },
    "body": {
        "name": "a-1731562297",
        "name_en": "ORDER_ID",
        "name_he": "ORDER_ID",
        "show_hide": "1"
    },
    "url_user": "https:\/\/{user}.bull36.com\/app\/TicketCustomFields.Edit",
    "url_domain": "https:\/\/{domain}\/app\/TicketCustomFields.Edit"
}

Endpoint

POST /app/TicketCustomFields.Edit
POST https://{user}.bull36.com/app/TicketCustomFields.Edit
POST https://{domain}/app/TicketCustomFields.Edit

Sample Output

{
    "success": 1,
    "message": "Your Custom",
    "name": "a-1731562297",
    "socket_event": "ticketcustomfields.updated"
}

JavaScript Example

const token = 'YOUR TOKEN';
const body = new URLSearchParams({ name: 'a-1731562297', name_en: 'ORDER_ID', name_he: 'ORDER_ID' });
const res = await fetch('/app/TicketCustomFields.Edit', { method: 'POST', headers: { Authorization: 'Bearer ' + token }, body });
console.log(await res.json());

Error Example

{
    "success": 0,
    "message": "Ticket custom field not found."
}