The name (slug) of the integration. For example, github
. See the Pizzly docs for more info
async
(params, auths) => {
}
const fetch = require('node-fetch')
const { host, secretKey } = auths.pizzly
const authentication = 'Basic ' + Buffer.from(secretKey + ':').toString('base64')
// Retrieve an integration's details
// https://github.com/Bearer/Pizzly/wiki/Reference-:-API#retrieve-an-integrations-details
return await (await fetch(`https://${host}/api/${params.integrationSlug}`, { headers: { "Authorization": authentication } })).json()