I want to create a ticket in Freshdesk as a response to something. I tried using the Freshdesk integration in Zapier, but it’s missing a number of fields. So I moved to a webhook instead. API documentation for Freshdesk is here: https://developers.freshdesk.com/api/#tickets
I’m running a POST to https://(mydomain).freshdesk.com/api/v2/tickets
I’m properly including my Basic Auth as (APIKEY)|X and I’m not getting any auth errors.
I’m including Content-Type: applicaiton/json and making sure the payload is json.
I started off trying to include every field I needed at the end, but it kept erroring so I kept reducing the number of fields until I’m left with the one required field (in this case email) and I am still getting an error.
The error I receive is “The app returned "It should be one of these values: '2,3,4,5,7,8'".”
Thanks in advance for any assistance.