UNPKG

zapier-platform-cli

Version:

The CLI for apps in the Zapier Developer Platform.

33 lines (28 loc) 635 B
const listExample = (z, bundle) => { const customHttpOptions = { headers: { 'my-header': 'from zapier' } }; return z.request('http://example.com/api/v2/recipes.json', customHttpOptions) .then(response => { if (response.status >= 300) { throw new Error(`Unexpected status code ${response.status}`); } const recipes = JSON.parse(response.content); // do any custom processing of recipes here... return recipes; }); }; const App = { // ... triggers: { example: { // ... operation: { // ... perform: listExample } } } };