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

# Mandrill

> Integrate your application with the Mandrill (Mailchimp Transactional) API

## 🚀 Quickstart

Connect to Mandrill with Nango and see data flow in 2 minutes. Mandrill authenticates with a static API key sent in the JSON body of every request, so Nango adds it automatically — you don't need to pass it yourself.

<Steps>
  <Step id="create-integration" title="Create the integration">
    In Nango ([free signup](https://app.nango.dev)), go to [Integrations](https://app.nango.dev/dev/integrations) -> *Configure New Integration* -> *Mandrill*.
  </Step>

  <Step id="connect-mandrill-account" title="Connect your Mandrill account">
    Go to [Connections](https://app.nango.dev/dev/connections) -> *Add Test Connection*. Enter your API key, then save.
  </Step>

  <Step id="call-mandrill-api" title="Call the Mandrill API">
    Let's make your first request to the Mandrill API. Replace the placeholders below with your [secret key](https://app.nango.dev/dev/environment-settings), [integration ID](https://app.nango.dev/dev/integrations), and [connection ID](https://app.nango.dev/dev/connections):

    <Tabs>
      <Tab title="cURL">
        ```bash theme={null}
        curl "https://api.nango.dev/proxy/1.3/users/ping" \
          -X POST \
          -H "Authorization: Bearer <NANGO-SECRET-KEY>" \
          -H "Provider-Config-Key: <INTEGRATION-ID>" \
          -H "Connection-Id: <CONNECTION-ID>" \
          -H "Content-Type: application/json"
        ```
      </Tab>

      <Tab title="Node">
        Install Nango's backend SDK with `npm i @nangohq/node`. Then run:

        ```typescript theme={null}
        import { Nango } from '@nangohq/node';

        const nango = new Nango({ secretKey: '<NANGO-SECRET-KEY>' });

        const res = await nango.post({
            endpoint: '/1.3/users/ping',
            providerConfigKey: '<INTEGRATION-ID>',
            connectionId: '<CONNECTION-ID>'
        });

        console.log(res.data);
        ```
      </Tab>
    </Tabs>

    Or fetch credentials with the [Node SDK](/docs/reference/sdks/node#get-a-connection-with-credentials) or [API](/docs/reference/api/connection/get).

    ✅ You're connected! Check the [Logs](https://app.nango.dev/dev/logs) tab in Nango to inspect requests.
  </Step>

  <Step id="implement-in-app" title="Implement Nango in your app">
    Follow our [Auth implementation guide](/docs/guides/auth/auth-guide) to integrate Nango in your app.

    To obtain an API key, follow the setup guide linked below.
  </Step>
</Steps>

## 📚 Mandrill integration guides

Nango-maintained guides for common use cases.

* [How to connect your Mandrill account](/docs/api-integrations/mandrill/connect)\
  Generate an API key in Mandrill and connect it to Nango

Official docs: [Mandrill Transactional API docs](https://mailchimp.com/developer/transactional/api/)

## 🧩 Pre-built syncs & actions for Mandrill

Enable them in your dashboard. Extend and customize to fit your needs.

### Others

| Function name                 | Description                                                                                                     | Type                                           | Source code                                                                                                                          |
| ----------------------------- | --------------------------------------------------------------------------------------------------------------- | ---------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------ |
| `add-allowlist-entry`         | Add an email address to the rejection allowlist.                                                                | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/mandrill/actions/add-allowlist-entry.ts)         |
| `add-inbound-domain`          | Add an inbound-routing domain to the account.                                                                   | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/mandrill/actions/add-inbound-domain.ts)          |
| `add-inbound-route`           | Add a new mailbox route to an inbound domain.                                                                   | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/mandrill/actions/add-inbound-route.ts)           |
| `add-metadata-field`          | Add a new custom metadata field definition for the account.                                                     | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/mandrill/actions/add-metadata-field.ts)          |
| `add-reject`                  | Add an email address to the rejection denylist.                                                                 | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/mandrill/actions/add-reject.ts)                  |
| `add-sender-domain`           | Add a sender domain to the account for SPF/DKIM verification.                                                   | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/mandrill/actions/add-sender-domain.ts)           |
| `add-sms-reject`              | Add a phone number to the SMS rejection denylist.                                                               | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/mandrill/actions/add-sms-reject.ts)              |
| `add-tracking-domain`         | Add a click/open-tracking domain to the account.                                                                | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/mandrill/actions/add-tracking-domain.ts)         |
| `cancel-scheduled-message`    | Cancel a scheduled email before it sends.                                                                       | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/mandrill/actions/cancel-scheduled-message.ts)    |
| `check-inbound-domain`        | Check the MX settings for an inbound-routing domain.                                                            | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/mandrill/actions/check-inbound-domain.ts)        |
| `check-ip-custom-dns`         | Test whether a custom reverse DNS record is correctly configured for a dedicated IP.                            | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/mandrill/actions/check-ip-custom-dns.ts)         |
| `check-sender-domain`         | Check the SPF and DKIM settings for a sender domain.                                                            | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/mandrill/actions/check-sender-domain.ts)         |
| `check-tracking-domain`       | Check the CNAME settings for a tracking domain.                                                                 | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/mandrill/actions/check-tracking-domain.ts)       |
| `create-ip-pool`              | Create a new dedicated IP pool.                                                                                 | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/mandrill/actions/create-ip-pool.ts)              |
| `create-subaccount`           | Add a new subaccount.                                                                                           | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/mandrill/actions/create-subaccount.ts)           |
| `create-template`             | Add a new Mandrill template.                                                                                    | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/mandrill/actions/create-template.ts)             |
| `create-webhook`              | Add a new webhook for account events                                                                            | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/mandrill/actions/create-webhook.ts)              |
| `delete-allowlist-entry`      | Remove an email address from the rejection allowlist.                                                           | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/mandrill/actions/delete-allowlist-entry.ts)      |
| `delete-dedicated-ip`         | Delete a dedicated IP.                                                                                          | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/mandrill/actions/delete-dedicated-ip.ts)         |
| `delete-inbound-domain`       | Delete an inbound-routing domain from the account.                                                              | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/mandrill/actions/delete-inbound-domain.ts)       |
| `delete-inbound-route`        | Delete an existing inbound mailbox route.                                                                       | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/mandrill/actions/delete-inbound-route.ts)        |
| `delete-ip-pool`              | Delete a dedicated IP pool.                                                                                     | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/mandrill/actions/delete-ip-pool.ts)              |
| `delete-metadata-field`       | Delete an existing custom metadata field definition.                                                            | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/mandrill/actions/delete-metadata-field.ts)       |
| `delete-reject`               | Remove an email address from the rejection denylist.                                                            | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/mandrill/actions/delete-reject.ts)               |
| `delete-sender-domain`        | Delete an unverified sender domain from the account.                                                            | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/mandrill/actions/delete-sender-domain.ts)        |
| `delete-sms-reject`           | Remove a phone number from the SMS rejection denylist.                                                          | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/mandrill/actions/delete-sms-reject.ts)           |
| `delete-subaccount`           | Delete an existing subaccount.                                                                                  | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/mandrill/actions/delete-subaccount.ts)           |
| `delete-tag`                  | Permanently delete a tag and its stats.                                                                         | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/mandrill/actions/delete-tag.ts)                  |
| `delete-template`             | Delete a template.                                                                                              | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/mandrill/actions/delete-template.ts)             |
| `delete-tracking-domain`      | Delete an unverified tracking domain from the account.                                                          | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/mandrill/actions/delete-tracking-domain.ts)      |
| `delete-webhook`              | Delete an existing webhook.                                                                                     | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/mandrill/actions/delete-webhook.ts)              |
| `get-account-info`            | Return information about the API-connected Mandrill account/user.                                               | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/mandrill/actions/get-account-info.ts)            |
| `get-all-tags-time-series`    | Get recent hourly stats aggregated across all tags                                                              | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/mandrill/actions/get-all-tags-time-series.ts)    |
| `get-export-info`             | Get the status and (if finished) download URL of an export job.                                                 | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/mandrill/actions/get-export-info.ts)             |
| `get-ip-pool-info`            | Get information about a single dedicated IP pool.                                                               | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/mandrill/actions/get-ip-pool-info.ts)            |
| `get-message-content`         | Get the full content (headers, html, text) of a single recently sent message.                                   | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/mandrill/actions/get-message-content.ts)         |
| `get-message-info`            | Get delivery/tracking information for a single recently sent message.                                           | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/mandrill/actions/get-message-info.ts)            |
| `get-sender-info`             | Get detailed sending information about a single sender address.                                                 | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/mandrill/actions/get-sender-info.ts)             |
| `get-sender-time-series`      | Get recent hourly stats for a single sender address.                                                            | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/mandrill/actions/get-sender-time-series.ts)      |
| `get-subaccount-info`         | Get detailed information about a single subaccount.                                                             | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/mandrill/actions/get-subaccount-info.ts)         |
| `get-tag-info`                | Get detailed information about a single tag.                                                                    | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/mandrill/actions/get-tag-info.ts)                |
| `get-tag-time-series`         | Get recent hourly stats for a single tag.                                                                       | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/mandrill/actions/get-tag-time-series.ts)         |
| `get-template-info`           | Get information for a single existing template.                                                                 | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/mandrill/actions/get-template-info.ts)           |
| `get-template-time-series`    | Get recent hourly stats for a single template.                                                                  | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/mandrill/actions/get-template-time-series.ts)    |
| `get-webhook-info`            | Get data about a single existing webhook.                                                                       | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/mandrill/actions/get-webhook-info.ts)            |
| `list-account-senders`        | List the sender email addresses (verified and unverified) that have been used on this account.                  | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/mandrill/actions/list-account-senders.ts)        |
| `list-exports`                | List the account's export jobs.                                                                                 | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/mandrill/actions/list-exports.ts)                |
| `list-scheduled-messages`     | List messages that are scheduled to be sent in the future.                                                      | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/mandrill/actions/list-scheduled-messages.ts)     |
| `parse-mime-message`          | Parse a raw MIME document into its constituent pieces (headers, text, html, attachments) without sending it.    | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/mandrill/actions/parse-mime-message.ts)          |
| `pause-subaccount`            | Pause a subaccount's sending.                                                                                   | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/mandrill/actions/pause-subaccount.ts)            |
| `ping-api-v2`                 | Validate an API key using the JSON parser version of the ping.                                                  | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/mandrill/actions/ping-api-v2.ts)                 |
| `ping-api`                    | Validate an API key and respond to a ping (legacy parser).                                                      | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/mandrill/actions/ping-api.ts)                    |
| `publish-template`            | Publish the draft content of a template so it becomes the live version.                                         | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/mandrill/actions/publish-template.ts)            |
| `render-template`             | Inject content and merge variables into a template and return the rendered HTML, without sending it.            | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/mandrill/actions/render-template.ts)             |
| `reschedule-message`          | Change the send time of a scheduled email.                                                                      | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/mandrill/actions/reschedule-message.ts)          |
| `resume-subaccount`           | Resume a paused subaccount's sending.                                                                           | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/mandrill/actions/resume-subaccount.ts)           |
| `search-messages-time-series` | Search recently sent messages and return hourly send/open/click/bounce stats instead of individual messages.    | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/mandrill/actions/search-messages-time-series.ts) |
| `search-messages`             | Search recently sent messages by date range, query, tags, senders, or API key.                                  | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/mandrill/actions/search-messages.ts)             |
| `send-message-template`       | Send a transactional email rendered from a stored Mandrill template.                                            | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/mandrill/actions/send-message-template.ts)       |
| `send-message`                | Send a new transactional email message.                                                                         | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/mandrill/actions/send-message.ts)                |
| `send-raw-inbound-message`    | Take a raw MIME document and pass it through Mandrill's inbound webhook pipeline as if it had arrived by email. | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/mandrill/actions/send-raw-inbound-message.ts)    |
| `send-raw-message`            | Send a raw MIME document as a transactional message.                                                            | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/mandrill/actions/send-raw-message.ts)            |
| `start-activity-export`       | Begin an asynchronous export of the account's activity history.                                                 | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/mandrill/actions/start-activity-export.ts)       |
| `start-allowlist-export`      | Begin an asynchronous export of the account's rejection allowlist.                                              | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/mandrill/actions/start-allowlist-export.ts)      |
| `start-rejects-export`        | Begin an asynchronous export of the account's rejection denylist.                                               | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/mandrill/actions/start-rejects-export.ts)        |
| `update-inbound-route`        | Update the pattern or destination webhook of an existing inbound route.                                         | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/mandrill/actions/update-inbound-route.ts)        |
| `update-metadata-field`       | Update an existing custom metadata field definition.                                                            | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/mandrill/actions/update-metadata-field.ts)       |
| `update-subaccount`           | Update an existing subaccount's name, notes, or custom quota.                                                   | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/mandrill/actions/update-subaccount.ts)           |
| `update-template`             | Update the code/content of an existing template.                                                                | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/mandrill/actions/update-template.ts)             |
| `update-webhook`              | Update an existing webhook's url, description, or subscribed events.                                            | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/mandrill/actions/update-webhook.ts)              |
| `verify-sender-domain`        | Send a verification email to confirm ownership of a sender domain.                                              | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/mandrill/actions/verify-sender-domain.ts)        |
| `allowlist`                   | Sync all entries on the rejection allowlist.                                                                    | [Sync](/docs/guides/functions/syncs/sync-functions) | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/mandrill/syncs/allowlist.ts)                     |
| `dedicated-ips`               | Sync all dedicated IPs on this account.                                                                         | [Sync](/docs/guides/functions/syncs/sync-functions) | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/mandrill/syncs/dedicated-ips.ts)                 |
| `inbound-domains`             | Sync all inbound-routing domains configured on this account.                                                    | [Sync](/docs/guides/functions/syncs/sync-functions) | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/mandrill/syncs/inbound-domains.ts)               |
| `inbound-routes`              | Sync all inbound mailbox routes across all known inbound domains                                                | [Sync](/docs/guides/functions/syncs/sync-functions) | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/mandrill/syncs/inbound-routes.ts)                |
| `ip-pools`                    | Sync all dedicated IP pools on this account.                                                                    | [Sync](/docs/guides/functions/syncs/sync-functions) | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/mandrill/syncs/ip-pools.ts)                      |
| `mc-templates`                | Sync all Mailchimp (not Mandrill) templates available to this account.                                          | [Sync](/docs/guides/functions/syncs/sync-functions) | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/mandrill/syncs/mc-templates.ts)                  |
| `messages`                    | Sync recently sent transactional messages (activity log).                                                       | [Sync](/docs/guides/functions/syncs/sync-functions) | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/mandrill/syncs/messages.ts)                      |
| `metadata-fields`             | Sync all custom metadata field definitions configured on this account.                                          | [Sync](/docs/guides/functions/syncs/sync-functions) | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/mandrill/syncs/metadata-fields.ts)               |
| `rejects-sms`                 | Sync all entries on the SMS rejection denylist.                                                                 | [Sync](/docs/guides/functions/syncs/sync-functions) | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/mandrill/syncs/rejects-sms.ts)                   |
| `rejects`                     | Sync all entries on the email rejection denylist.                                                               | [Sync](/docs/guides/functions/syncs/sync-functions) | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/mandrill/syncs/rejects.ts)                       |
| `sender-domains`              | Sync sender domains added to the account for SPF/DKIM verification.                                             | [Sync](/docs/guides/functions/syncs/sync-functions) | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/mandrill/syncs/sender-domains.ts)                |
| `senders`                     | Sync sender addresses that have been used to send from this account.                                            | [Sync](/docs/guides/functions/syncs/sync-functions) | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/mandrill/syncs/senders.ts)                       |
| `subaccounts`                 | Sync all subaccounts on this account.                                                                           | [Sync](/docs/guides/functions/syncs/sync-functions) | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/mandrill/syncs/subaccounts.ts)                   |
| `tags`                        | Sync all user-defined tags and their aggregate stats                                                            | [Sync](/docs/guides/functions/syncs/sync-functions) | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/mandrill/syncs/tags.ts)                          |
| `templates`                   | Sync all Mandrill templates.                                                                                    | [Sync](/docs/guides/functions/syncs/sync-functions) | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/mandrill/syncs/templates.ts)                     |
| `tracking-domains`            | Sync all click/open-tracking domains configured on this account.                                                | [Sync](/docs/guides/functions/syncs/sync-functions) | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/mandrill/syncs/tracking-domains.ts)              |
| `webhooks`                    | Sync all webhooks configured on this account.                                                                   | [Sync](/docs/guides/functions/syncs/sync-functions) | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/mandrill/syncs/webhooks.ts)                      |

***
