API call to check Custom Field checkbox | Community
Skip to main content

API call to check Custom Field checkbox

  • October 15, 2025
  • 2 replies
  • 0 views

Tautvydas

Hey team,

 

We have several custom fields that are checkboxes on the ticket form. Is it possible to check/uncheck them using an API call? So far I had no luck doing so. 

{
 "ticket": {
   "custom_fields": [
     {
       "id": 31040284313501,
       "value": true
     }
   ]
 }
}

Thanks!

2 replies

James57
  • October 16, 2025

Hi Tautvydas Stirbys,

I think you need to change fields to custom_fields


Integriq
  • October 17, 2025

Hi @tautvydas 

You might want to use custom_fields instead of fields key. That should fix the checkbox update issue!

{
 "ticket": {
   "custom_fields": [
     {
       "id": 42311723860628,
       "value": true
     }
   ]
 }
}