UNPKG

zapier-platform-cli

Version:

The CLI for apps in the Zapier Developer Platform.

32 lines (27 loc) 657 B
// Search stub created by 'zapier convert'. This is just a stub - you will need to edit! // find a particular <%= LOWER_NOUN %> by name const search<%= CAMEL %> = (z, bundle) => { const responsePromise = z.request({ url: <%= URL %> params: { EXAMPLE: bundle.inputData.EXAMPLE } }); return responsePromise .then(response => JSON.parse(response.content)); }; module.exports = { key: '<%= KEY %>', noun: '<%= NOUN %>', display: { label: 'Find a <%= NOUN %>', description: 'Finds a <%= LOWER_NOUN %>.' }, operation: { inputFields: [ <%= FIELDS %> ], <%= SAMPLE %> perform: search<%= CAMEL %> } };