Automations can be set-up using low-code / no-code tools. Tools such as n8n, Clay, Zapier, Make. The interaction between these tools and EmailBison will be one of the following two methods.
  1. Listening to the EmailBison Webhooks
  2. Making API requests

Translating API calls

There are general guidelines on translating the API calls found in these docs and in the API reference. Please consult the documentation for your specific tool to supplement this. Hover over names to see other common names found in these tools.
  • — A header with your request with a Authorization key and a Bearer {api_key} value. Automation tools usually have a method of saving these tokens to be used for multiple automations, instead of having to pass in a header in your automation requests.
  • — One of GET, DELETE, POST, PUT, PATCH. This needs to match the HTTP method found in these docs, or the API Reference.
  • — This is the path to the endpoint you wish to use in your automation. Example: https://send.greenmarketing.com/api/leads
  • — Used for GET requests, like this getting replies request. The parameters are usually sent one by one in these tools with an entry for the name of the parameter, and the value. More info.
  • — This will be 1:1 with the examples provided in this documentation and the API reference.