My Request Bin
@seanhs
code:
data:privatelast updated:5 years ago
@seanhs/
My Request Bin

Quickstart

  • Fork this workflow or create a new one with a webhook source to setup your RequestBin. Requires login.

Usage Tips

  • All workflow code on Pipedream is public and run on every event. All event data is private.
  • Send data to Airtable, S3, Snowflake or HTTP out using code actions.
  • Event data is accessible in the $event object — add, update, or delete properties of this object in code.
  • Use $end() to stop your workflow or $respond to return a response to the client.
  • Most of NPM’s 400,000 packages are available for use — just require() them.
  • Store API keys or secrets as environment variables and access via process.env.KEY_NAME.
  • await the execution of async code with Promises, using async / await.
  • You need to await the execution of async code with Promises, using async / awaitlearn more here