> ## Documentation Index
> Fetch the complete documentation index at: https://docs.emailbison.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Introduction

Automations can be set-up using low-code / no-code tools. Tools such as [n8n](https://n8n.io), [Clay](https://clay.com), [Zapier](https://zapier.com), [Make](https://make.com).

<Tip>
  Clay users have access to an official EmailBison integration with pre-built enrichments. See [Clay - Overview](/low-code-tools/clay/overview) to get started.
</Tip>

The interaction between these tools and EmailBison will be done through the following.

1. Listening to the [EmailBison Webhooks](/webhooks/overview)
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.

* <Tooltip tip="Authentication, Accounts">Authorization</Tooltip> -- 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.
* <Tooltip tip="Method">HTTP Method</Tooltip> -- One of `GET`, `DELETE`, `POST`, `PUT`, `PATCH`. This needs to match the HTTP method found in these docs, or the API Reference.
* <Tooltip tip="URL">Endpoint</Tooltip> -- This is the path to the endpoint you wish to use in your automation. *Example: `https://send.greenmarketing.com/api/leads`*
* <Tooltip tip="Query Params, URL Params">Query Parameters</Tooltip> -- Used for GET requests, like this [getting replies request](master-inbox/fetching-replies). 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](get-started/quickstart/notes-and-terminology#query-parameters).
* <Tooltip tip="JSON Body, Body Params">Body</Tooltip> -- This will be 1:1 with the examples provided in this documentation and the API reference.
