Via object reference | The place for Zendesk users to come together and share
Skip to main content
Employee
March 26, 2021
Question

Via object reference

  • March 26, 2021
  • 15 replies
  • 52 views

This is a continuing discussion about the article Via object reference in the developer documentation.

15 replies

Employee
March 26, 2021

Hi Megumi. Definitions for that attribute are here:

The Via Object

...with an example of what's returned here:

List Email CCs for a Comment

...
original_recipients
: [ "agent@company.zendesk.com", "enduser@gmail.com", "deletedenduser@example.com" ]
...
Megumi
March 26, 2021

Hello, Darren Chan

Is there any definition of "original_recipients" in email from? I'd like to know when this parameter filled and what kind of value in it.

Megumi
March 26, 2021

Hello Bryan, Thank you for the answer.

Is "original_recipients" always filled in the ticket via "email"? I found a ticket that does not have "original_recipients".

March 26, 2021

I'm using the Zendesk API to create new tickets arrived in another ticketing system.

I try to use the "via" attribute to customize the displayed via text in the Zendesk front end's ticket detailpage. Whatever I set for the "via" attribute, it's replaced with "channel": "api" and in the front end the agents see "from Zendesk support"... actually there should be something like "from XY" so that our agents see where the ticket is actually coming from.

Is that somehow possible?

Employee
March 26, 2021

Yes, this attribute is filled in when "email".

Employee
March 26, 2021

Hi @Andy Loeber,

Setting "via" is very limited — in this case, because it sounds like you're going through POST /api/v2/tickets, the system sets it and you don't have control.

It's more of an indicator of the entry point into Zendesk (in this case the API), rather than what external system the data might be coming from.

Even for APIs that can set it (example: POST /api/v2/channels/voice/tickets.json) the options are limited.

March 26, 2021

Hi. I am trying to get the email address that was used to complete a web_widget form, but it doesn't exist in the via>source>from attribute (as confirmed in the table above). The email address does existing on the ticket within ZenDesk, but I cannot see how to get it through the API. Can anyone shed some light on this please?

March 26, 2021

Hi @Bryan - Community Manager

Thank you for your answer. This coincides with my observations.

As a solution I put some recognizable extra text in the ticket's subject so that our agents can recognize that the ticket's coming from external.

Greg K
Employee
March 26, 2021

Hi @Tommy Newman! In order to get the email address in this case, you would need to pull the requester_ID attribute in Tickets and then you could make a request to the User's API to grab that from the email attribute. 

March 26, 2021

Perfect, that worked! Thanks so much