Skip to content

Instantly share code, notes, and snippets.

@geografa
Created October 27, 2023 20:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save geografa/5cb5ba1ec1d1834f00bf5ac5031415a9 to your computer and use it in GitHub Desktop.
Save geografa/5cb5ba1ec1d1834f00bf5ac5031415a9 to your computer and use it in GitHub Desktop.
Create three new tickets using Node Zendesk and delete after 30 seconds
#!/usr/bin/env node
// this creates three temporary tickets and then deletes them after 30 seconds
const process = require('node:process');
const zd = require('node-zendesk');
const exampleConfig = require('./exampleConfig');
const client = zd.createClient({
username: process.env.ZENDESK_TEST_USERNAME || exampleConfig.auth.username,
token: process.env.ZENDESK_TEST_TOKEN || exampleConfig.auth.token,
remoteUri: process.env.ZENDESK_TEST_REMOTEURI || exampleConfig.auth.remoteUri,
});
//
const newTickets = [{
ticket: {
subject: 'This is a urgent temporary ticket and will be deleted in 30 seconds.',
comment: {
body: 'I pok pok, hell of +1 prism irony trust fund. VHS la croix brunch hammock. Enamel pin taiyaki pabst, sustainable you probably haven\'t heard of them squid keffiyeh listicle. Blue bottle narwhal vibecession flexitarian. Waistcoat twee cold-pressed, fixie vice crucifix occupy butcher kogi raw denim beard meditation mixtape green juice. Squid lyft waistcoat actually. Ethical pickled fam, ascot fit DIY four loko franzen bruh. Hell of seitan swag subway tile austin humblebrag. Dreamcatcher distillery cronut tofu ascot big mood plaid kombucha gorpcore, health goth pinterest snackwave freegan slow-carb. Hot chicken solarpunk everyday carry, yes plz slow-carb cray art party unicorn shoreditch swag man braid YOLO celiac. Next level leggings four loko, la croix tacos cray four dollar toast helvetica fingerstache chartreuse 90',
},
priority: 'urgent'
},
},
{
ticket: {
subject: 'This is a high temporary t icket and will be deleted in 30 seconds.',
comment: {
body: 'I pok pok, hell of +1 prism irony trust fund. VHS la croix brunch hammock. Enamel pin taiyaki pabst, sustainable you probably haven\'t heard of them squid keffiyeh listicle. Blue bottle narwhal vibecession flexitarian. Waistcoat twee cold-pressed, fixie vice crucifix occupy butcher kogi raw denim beard meditation mixtape green juice. Squid lyft waistcoat actually. Ethical pickled fam, ascot fit DIY four loko franzen bruh. Hell of seitan swag subway tile austin humblebrag. Dreamcatcher distillery cronut tofu ascot big mood plaid kombucha gorpcore, health goth pinterest snackwave freegan slow-carb. Hot chicken solarpunk everyday carry, yes plz slow-carb cray art party unicorn shoreditch swag man braid YOLO celiac. Next level leggings four loko, la croix tacos cray four dollar toast helvetica fingerstache chartreuse 90',
},
priority: 'high'
},
},
{
ticket: {
subject: 'This is a normal temporary ticket and will be deleted in 30 seconds.',
comment: {
body: 'I pok pok, hell of +1 prism irony trust fund. VHS la croix brunch hammock. Enamel pin taiyaki pabst, sustainable you probably haven\'t heard of them squid keffiyeh listicle. Blue bottle narwhal vibecession flexitarian. Waistcoat twee cold-pressed, fixie vice crucifix occupy butcher kogi raw denim beard meditation mixtape green juice. Squid lyft waistcoat actually. Ethical pickled fam, ascot fit DIY four loko franzen bruh. Hell of seitan swag subway tile austin humblebrag. Dreamcatcher distillery cronut tofu ascot big mood plaid kombucha gorpcore, health goth pinterest snackwave freegan slow-carb. Hot chicken solarpunk everyday carry, yes plz slow-carb cray art party unicorn shoreditch swag man braid YOLO celiac. Next level leggings four loko, la croix tacos cray four dollar toast helvetica fingerstache chartreuse 90',
},
priority: 'normal'
},
},
{
ticket: {
subject: 'This is a low temporary ticket and will be deleted in 30 seconds.',
comment: {
body: 'I pok pok, hell of +1 prism irony trust fund. VHS la croix brunch hammock. Enamel pin taiyaki pabst, sustainable you probably haven\'t heard of them squid keffiyeh listicle. Blue bottle narwhal vibecession flexitarian. Waistcoat twee cold-pressed, fixie vice crucifix occupy butcher kogi raw denim beard meditation mixtape green juice. Squid lyft waistcoat actually. Ethical pickled fam, ascot fit DIY four loko franzen bruh. Hell of seitan swag subway tile austin humblebrag. Dreamcatcher distillery cronut tofu ascot big mood plaid kombucha gorpcore, health goth pinterest snackwave freegan slow-carb. Hot chicken solarpunk everyday carry, yes plz slow-carb cray art party unicorn shoreditch swag man braid YOLO celiac. Next level leggings four loko, la croix tacos cray four dollar toast helvetica fingerstache chartreuse 90',
},
priority: 'low'
},
}
];
// for each ticket in the array, create a ticket
// and then delete it after 30 seconds
newTickets.forEach(ticket => {
client.tickets.create(ticket, function (error, request, result) {
if (error) return handleError(error);
console.log(JSON.stringify(result, null, 2, true));
console.log('Ticket created!');
console.log('Ticket ID: ' + result.id);
setTimeout(() => {
client.tickets.delete(result.id, function (error, request, result) {
if (error) return handleError(error);
console.log('Ticket deleted!');
});
}, 30000);
});
});
function handleError(error) {
console.log(error);
process.exit(-1);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment