type Zendesk = {
username: string;
password: string;
subdomain: string;
};
/**
* Show Macro Replica
* Returns an unpersisted macro representation derived from a ticket or macro.
The endpoint takes one of the following query parameters: `macro_id` or `ticket_id`. If you include both, `macro_id` is used.
#### Allowed For
* Agents
*/
export async function main(
auth: Zendesk,
macro_id: string | undefined,
ticket_id: string | undefined
) {
const url = new URL(
`https://${auth.subdomain}.zendesk.com/api/v2/macros/new`
);
for (const [k, v] of [
["macro_id", macro_id],
["ticket_id", ticket_id],
]) {
if (v !== undefined && v !== "") {
url.searchParams.append(k, v);
}
}
const response = await fetch(url, {
method: "GET",
headers: {
Authorization: "Basic " + btoa(`${auth.username}:${auth.password}`),
},
body: undefined,
});
if (!response.ok) {
const text = await response.text();
throw new Error(`${response.status} ${text}`);
}
return await response.json();
}
Submitted by hugo697 377 days ago
type Zendesk = {
username: string;
password: string;
subdomain: string;
};
/**
* Show Macro Replica
* Returns an unpersisted macro representation derived from a ticket or macro.
The endpoint takes one of the following query parameters: `macro_id` or `ticket_id`. If you include both, `macro_id` is used.
#### Allowed For
* Agents
*/
export async function main(
auth: Zendesk,
macro_id: string | undefined,
ticket_id: string | undefined
) {
const url = new URL(
`https://${auth.subdomain}.zendesk.com/api/v2/macros/new`
);
for (const [k, v] of [
["macro_id", macro_id],
["ticket_id", ticket_id],
]) {
if (v !== undefined && v !== "") {
url.searchParams.append(k, v);
}
}
const response = await fetch(url, {
method: "GET",
headers: {
Authorization: "Basic " + btoa(`${auth.username}:${auth.password}`),
},
body: undefined,
});
if (!response.ok) {
const text = await response.text();
throw new Error(`${response.status} ${text}`);
}
return await response.json();
}
Submitted by hugo697 923 days ago