python-freshdesk
python-freshdesk copied to clipboard
Is it possible to Create a ticket with custom fields?
I can't figure it out. Is possible to put the Custom_field variable in to the create_ticket(): call ?
A Litle late. But yes. create_ticket() has a property called custom_fields. I using it like that
custom_fields = { 'cf_custom_field': 'testing' }
create_ticket(custom_fields=custom_fields)