Cannot update custom fields | Community
Skip to main content

Cannot update custom fields

  • February 24, 2026
  • 1 reply
  • 0 views

Mark32

I am unable to update custom fields from my app. I've even tried using the REPL app. The original field has the value “Test Hall 5”.  As you can see below after setting the field, the response indicates it is successful.  I then click submit on the ticket to save the changes. As you can see, when calling get() the the previous value is still there. Updating other ticket fields via set() works. What am I doing wrong?

 

1: async request - zafClient.set('ticket.customField:custom_field_27609398553885', "Test Updated");> {}1: async response (undefinedms)> {
  "errors": {},
  "ticket.customField:custom_field_27609398553885": "Test Updated"
}2: async request - zafClient.get('ticket.customField:custom_field_27609398553885');> {}2: async response (undefinedms)> {
  "errors": {},
  "ticket.customField:custom_field_27609398553885": "Test Hall 5"
}

1 reply

Ahmed11
  • February 26, 2026

Hi @mark32 ,

You can only set fields that are present on the form. If the field is not on the form, you can either add it and hide it, or use rest API.

You also need to adapt to the type of field you are setting. For example, a drop down field is set using the value tag rather than the value title.

In both cases, you will not get an error in response to the set method. The submission just sadly ignores your action with no feedback.