I am attempting to automatically create a Company in FreshDesk when a new customer is created in our CRM system.
This works if I do not include the custom field, so I know the issue is with how I am formatting the json:
{“name”:“aaa-Test 9”,“domains”:[“xxxxxxx.com”], “renewal_date”:“2022-07-27”, “custom_fields” : { “account” : “000001” }}
I also tried:
{“name”:“aaa-Test 9”,“domains”:[“xxxxxxx.com”], “renewal_date”:“2022-07-27”,“account” : “000001” }
In both cases I get “Bad Request”. I get the same results if I create a customer manually and attempt to update the “account” field.
I have confirmed that the “account” field exists, and attempted to update an existing
What is the syntax for the JSON as it relates to custom fields?