You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Please give me a sample code to create ticket including tags also using zendeskapi_v2 in VB.net or C#
Thanks,
SHASHIKANT
The text was updated successfully, but these errors were encountered:
shashikant2011
changed the title
Please provide ZendeskApi_v2 Create Ticket sample Code in VB.net or C#
Please provide ZendeskApi_v2 Create Ticket with Tags also sample Code in VB.net or C#
Jan 6, 2015
Ah seems the tests don't use the Tags property, so my apologies. But tags are just a list of strings so you could create them like this:
var ticket = new Ticket()
{
Subject = "my printer is on fire",
Comment = new Comment() { Body = "HELP" },
Priority = TicketPriorities.Urgent,
Tags = new List() { "yo", "help"}
};
Hi,
Please give me a sample code to create ticket including tags also using zendeskapi_v2 in VB.net or C#
Thanks,
SHASHIKANT
The text was updated successfully, but these errors were encountered: