Hi everyone,
I'm trying to send Organization "multi-line" text field content into "Ticket" multi-line text field content.
I read that this was not possible with simple triggers and that I should rather use Webhooks.
The thing is, I'm only able to to make them works when I'm using "PUT" method.
With POST method, I've got the following error message :
{"error":"InvalidEndpoint","description":"Not found"}
My ENDPOINT URL is the following :
https://domain.zendesk.com/api/v2/tickets/{{ticket.id}}.json
The Request I launch is that one :
{
"ticket": {
"custom_fields": [
{
"id": 13257384091921,
"value": "{{ticket.organization.custom_fields.important_information.title}}"
}
]
}
}
Is there anything I'm not doing correctly ?
I'll take any simple method in order to be able to grab my Org custom field content and push it into my Ticket custom field.
Please note that I can have a lot of different contents into my Org Custom field.
Thanks in advance for your help
Regards