Recent searches
No recent searches
Zendesk API Custom Fields
Answered
Posted Oct 13, 2016
Is that possible to get custom field value from ticket using custom field name in zendesk apps ?
0
18
Recent searches
No recent searches
Posted Oct 13, 2016
Is that possible to get custom field value from ticket using custom field name in zendesk apps ?
0
18 comments
Official
Bryan Flynn
Here's the syntax for getting a custom field's value:
client.get('ticket.customField:custom_field_12345678')
...where the '12345678' value is *your* custom field's unique ID, prefixed by the literal string "ticket.customField:custom_field_"
This is documented here:
https://developer.zendesk.com/apps/docs/apps-v2/support_api#ticket.customfieldfieldname
One way of getting your custom field's ID value in Zendesk is by going to to Admin > Manage/Ticket Fields > edit -- it will be listed at the top of the Ticket Field Edit page.
0
Carsten F.
Hi Erhem
Yes it is. What kind of app are you building?
0
Erhem Diputra
Zendesk Apps.. I want to show data from custom fields in zendesk apps..I already try this link https://support.zendesk.com/hc/en-us/community/posts/203460606-How-to-get-current-ticket-field-in-JS- , but object ticket doesn't have customField object..
0
Alexander Culligan
It will depend on the ZAF you're using.For ZAF V2, you could use
More info about that here and here.
For ZAF V1, you could use
More info about that here. Good luck with your app!
0
Erhem Diputra
I'm using ZAF V2, and already tried
but it doesn't give me value , response from that code is like this :
ticketFields:custom_field_1234:Object
0
Lance July
Was a correct approach to this issue found? I am in a similar situation where I would like to update the value of a custom field on a new ticket using the API, but cannot access the field value.
Contrary to the docs (https://developer.zendesk.com/apps/docs/apps-v2/support_api#ticket-object), I do not see a ticket.customField property when calling:
And as stated earlier
does not expose the field value. Any help would be appreciated.
0
Patrick Thomas
Any update on this? I cannot see the value of the customField being exposed, as well.
0
Patrick Thomas
Excellent Bryan, that works, many thanks.
And it actually is in the docs ;-)
https://developer.zendesk.com/apps/docs/apps-v2/support_api#ticket.customfieldfieldname
0
Enmanuel Payano
Apologies if this is a late answer, but this method works for me:
client.get('ticketFields').then(function(data) {
// Get all fields to query against
var fields = data["ticketFields"];
var CustomFieldName;
// Iterate through each field
for (var field in fields) {
// Find the one that match
if (fields[field].label == "Your Custom Field Name") {
// console.log(fields[field].label);
// console.log(fields[field].name);
// Grab your custom field ID
CustomFieldName = fields[field].name;
}
}
// Do some custom field magic for your Zendesk
client.set('ticket.customField:' + CustomFieldName, DataForYourField).then(function(data) {
// https://SomeDomain.zendesk.com/api/v2/ticket_fields
console.log(data); // { 'ticket.subject': 'Printer Overheating Incident' }
});
});
Happy Coding!!
0
Prashanth Thiaga
This worked :
client.get('ticket.customField:custom_field_360010330451').then(
function(data){
var fieldValue= Object.keys(data)[1];
console.log( data[fieldValue]);
}
);
0
Jessie Schutz
Thanks for sharing, Prashanth!
0
Getaroom API
All of these answers seem to point to how to SET the value of a custom field despite the original question asking how to GET the value of a custom field. This is the closest forum I've found regarding the issue I have but it also looks like many moderator's comments have been redacted and URLs are no longer valid. As far as I can tell, the following approach seems like the most appropriate endpoint for the .get method of the ZAFClient initialized object.
How do you get the actual value of the field? Is there another way to go about getting the value of a custom field and I'm just not seeing it in the docs?
0
Bryan Flynn
Hi Brandon. It is a bit confusing. There's the ticket field's meta information (the example you gave), which is the "schema" of the field, no matter the ticket. Then there's the custom field's actual value stored for a given ticket.
To get the a custom field's value for the currently displayed ticket use:
Hope this helps!
0
IZA
Hello, I´m trying to set a value on a custom field
But it´s returning a Promise
I got the ID from the top page
Any help, please?
Tks!
0
mccabe.tonna
@Administradores IZA
Set or get?
If you're trying to set a value you need to include what value you're trying to set - zafClient.set('ticket.customField:custom_field_360018041180', value)
but a Get could look like the following if you want to store to a var - i use this method below to get multiple values at once
client.get(['ticket.customField:custom_field_360018041180']).then(function(data){
let value = data['ticket.customField:custom_field_360018041180']
})
0
IZA
Thank you McCabe!! Worked perfectly!!!
0
mccabe.tonna
@Administradores IZA
Great!, you can add multiple objects within that get function [array], then when setting values, point each variable to each item in the array
0
Blog Beginner
@mccabe.tonna I am unable to get the value of a custom field. Following is the code I wrote. Is there something I am doing incorrectly ?
I have tried all possible ways but no luck. Basically I want to read value from one custom field and set it to another custom field. It works fine when I try to assign hardcoded string. But the get part somehow isn't fetching the field information.
0