Can run on: Windows, Linux
Update Record
Description
This step updates an existing record in FreshDesk. You select the record type, provide the record ID, and specify the new field values. Use this step in workflows that change ticket status, update contact details, assign tickets to agents, or modify records based on processing results from other steps.
References
To check the Field Value type required for the specified Field Name supported for the given Form Name, use the following links:
- https://developers.freshdesk.com/api/#filter_tickets
- https://developers.freshdesk.com/api/#update_ticket
- https://developers.freshdesk.com/api/#bulk_update_tickets
Annexure
Criteria query sample syntax format:
' "(ticket_field:integer OR ticket_field:'string') AND ticket_field:boolean"
Sample criteria query
- priority: 3<br/>
- status: 3 or status: 4<br/>
- group_id: 11<br/>
- (type:'Question' OR type:'Problem') AND (due_by:>'2017-10-01' AND due_by:<'2024-10-07')
Sample
JSON sample syntax format
{
"field1": integerValue1,
"field2": "stringValue2",
"field3": numberValue3,
"field4": {
arrayValue1,
arrayValue2
},
"field5": [
"arrayOfHashKey1": arrayOfHashValue2
],
"field6": [
arrayOfObjectValue1,
arrayOfObjectValue2
],
"field7": [
"arrayOfStringValue1",
"arrayOfStringValue2"
],
"field8": "booleanValue8",
"field9": "dateValue9",
"field10": "dateTimeValue10"
}