Incremental Ticket Event Export
One script reply has been approved by the moderators Verified

Returns a stream of changes that occurred on tickets.

Created by hugo697 844 days ago
Submitted by hugo697 Typescript (fetch-only)
Verified 298 days ago
1
type Zendesk = {
2
  username: string;
3
  password: string;
4
  subdomain: string;
5
};
6
/**
7
 * Incremental Ticket Event Export
8
 * Returns a stream of changes that occurred on tickets.
9
 */
10
export async function main(auth: Zendesk, start_time: string | undefined) {
11
  const url = new URL(
12
    `https://${auth.subdomain}.zendesk.com/api/v2/incremental/ticket_events`
13
  );
14
  for (const [k, v] of [["start_time", start_time]]) {
15
    if (v !== undefined && v !== "") {
16
      url.searchParams.append(k, v);
17
    }
18
  }
19
  const response = await fetch(url, {
20
    method: "GET",
21
    headers: {
22
      Authorization: "Basic " + btoa(`${auth.username}:${auth.password}`),
23
    },
24
    body: undefined,
25
  });
26
  if (!response.ok) {
27
    const text = await response.text();
28
    throw new Error(`${response.status} ${text}`);
29
  }
30
  return await response.json();
31
}
32