Reference

Endpoint Read Ticket ActivityStream


Name

get_ticket_activity_stream

Description

Lists ticket activities in the last 30 days affecting the agent making the request. The Ticket Activities API returns ticket activities by other people affecting the agent making the API request. Ticket activities include assigning a ticket to the agent, increasing the priority of a ticket assigned to the agent, or adding a comment to a ticket assigned to the agent. A possible use case for the API is building a personalized notification service for agents. [API reference]

Parameters

Parameter Required Options
Name: since

Label: Since (ISO e.g. 2013-04-03T16:02:46Z)

return the activities since a specific date. The since parameter takes a UTC time in the ISO 8601 format. Example: '2013-04-03T16:02:46Z'.
Name: PageSize

Label: Records Per Page (Max 100)

Output Columns

Label Data Type (SSIS) Data Type (SQL) Length Description
There are no Static columns defined for this endpoint. This endpoint detects columns dynamically at runtime.
If the column you are looking for is missing, consider customizing Zendesk Connector.

Input Columns

Label Data Type (SSIS) Data Type (SQL) Length Description
There are no Static columns defined for this endpoint. This endpoint detects columns dynamically at runtime.

Examples

SSIS

Use Zendesk Connector in API Source or in API Destination SSIS Data Flow components to read or write data.

API Source

API Source - Zendesk
Zendesk Connector can be used to integrate Zendesk REST API in your App / BI Tools. You can read/write data about Tickets, Activity, Users, Organizations and more.
Zendesk
Read Ticket ActivityStream
Optional Parameters
Since (ISO e.g. 2013-04-03T16:02:46Z)
SSIS API Source - Read from table or endpoint

API Destination

API Destination - Zendesk
Zendesk Connector can be used to integrate Zendesk REST API in your App / BI Tools. You can read/write data about Tickets, Activity, Users, Organizations and more.
Zendesk
Read Ticket ActivityStream
Optional Parameters
Since (ISO e.g. 2013-04-03T16:02:46Z)
SSIS API Destination - Access table or endpoint

ODBC application

Use these SQL queries in your ODBC application data source:

Read ticket activitystream

SELECT * FROM get_ticket_activity_stream

SQL Server

Use these SQL queries in SQL Server after you create a data source in Data Gateway:

Read ticket activitystream

DECLARE @MyQuery NVARCHAR(MAX) = 'SELECT * FROM get_ticket_activity_stream';

EXEC (@MyQuery) AT [LS_TO_ZENDESK_IN_GATEWAY];