curl --location --request POST '/helpdesk/v1/ticket_customized_fields' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"helpdesk_id": "1542164574896126",
"key_name": "test dropdown",
"display_name": "test dropdown",
"position": "3",
"field_type": "dropdown",
"description": "下拉示例",
"visible": true,
"editable": true,
"required": false,
"dropdown_options":{
"children":[
{
"tag":"a2ac322d-8d8c-432e-9631-17c4acaddbf7",
"display_name":"a"
},
{
"tag":"67068d18-20c9-412e-afc0-714d0e8fac29",
"display_name":"b"
},
{
"tag":"d135b9f3-f260-49e6-bb7b-32e334a99caf",
"display_name":"c"
}
]
},
"dropdown_allow_multiple": true
}'