Hello,
I am creating a PO through the API based on a ticket. I can fill one custom value. It doesn’t matter if the custom field is on the ticket or the PO. However, when I try to do two, it fails.
Do I have a separate entry for each entry, e.g.
"custom_fields": {
"requestor": "{{ticket.requester.name}}"
},
"custom_fields": {
"shipping address": "{{ticket.shipping_address}}"
},
or do it do it combined?
"custom_fields": {
"requestor": "{{ticket.requester.name}}"
"shipping address": "{{ticket.shipping_address}}"
},