Speedygeek/ZendeskApi_v2

Trying to Define Category when creating ticket

Closed this issue · 6 comments

I'm using the ZendeskApi.Tickets.CreateTicket(ticket).Ticket; to create my ticket. Everything is working great so far.

However, I can't seam to find the Category property when defining my ticket. How would I set a specific Category for my Ticket?

I should note I have added the Category's tag with the Tags property. This does set the tag, but doesn't change the Category, once the Category is selected through zendesk UI the tag is then added twice, once from the original creation, and once when selecting the Category.

I expected it to be automatically set via the tag, because this is exactly how the location field works.

Thanks,

I am unable to find category in the docs. https://developer.zendesk.com/rest_api/docs/support/tickets

Is it possible that you have added it as a custom field?

Hi thanks for the quick response, I think this is the case. I can't confirm as I am only admin and not owner (of zendesk account).
However, I've used api.Tickets.GetTicket(id); to get a ticket in which I have previously set to the correct Category. I see the custom field and it's value set. I use the custom field Id to try and set this in the CustomFields property of my Ticket, however it doesn't actually set that dropdown in the ticket.

I did the following;

List<CustomField> customFields = new List<CustomField>();
customFields.Add(new CustomerField { Id = [id], Value = "valueforfield" });
Ticket ticket = new Ticket()
{
      CustomFields = customFields
}

of coarse I have additional properties in my ticket, and the [id] is a long, which matches the long I found in the ticket after using GetTicket(id); Any suggestion on what could be done wrong?

Update
I just did a breakpoint after submitting ticket and the CustomField I set, is not set in the response to api.Tickets.CreateTicket(ticket);

Second Update
I tried directly setting the CustomFields value from the ticket I got using GetTicket. This worked to set all the fields. However this is obviously not what i need. Is it possible the reason my CustomFields are not being set properly when using the code above is because my List only has the one field? When setting from the ticket I retrieved, this List has 20 elements. Most of which have values set to null.

Thanks,

Hi Mozts2005,

I don't see anything wrong with your test (assuming you are getting a success). But No matter how I edit my CustomFields, The resulting ticket always comes back with the same CustomField configuration. 20 fields. All with different ids, all null values (except for one, which is set automatically by one of my tags). It might be how our zendesk account is set up, but I don't have that level of access to see these settings. I even tried taking the resulting ticket after CreateTicket and editing the value of the CustomField I want changed, then calling UpdateTicketAsync. the resulting ticket still has this CustomField return null.

Please feel free to use our test account to continue your testing. Try cloning our repo and see if you get the same issues.

But note every ticket will have a every custom field and if they are not set at any point in the tickets life they default to null. So having 20 nulls would be correct if your account has 20 custom field’s.

I will try to find some time to test with your test account.

I understand that all custom fields get defaulted to null. But what doesn't make sense is that this specific field is getting set to null while it has a value in the CustomField array I send in both CreateTicket and UpdateTicketAsync. I'll see if I can reproduce with your test account. But I doubt it will happen with that account. I think it's some setting with our account which I do not have access to. I will look into getting access for this.