Back to Nodes

Zadarma

Last updated May 20, 2026

This node allows you to connect n8n with Zadarma API

43 Weekly Downloads
692 Monthly Downloads

Included Nodes

Zadarma
Zadarma Trigger

Description

n8n-nodes-zadarma-app

n8n node for integrating Zadarma with n8n workflows.

This node allows you to connect n8n with Zadarma API to automate lead management, callbacks, and other CRM-related operations.

Features

  • Create and update entities in Teamsale CRM
  • Trigger workflows based on Zadarma events (callbacks, leads, etc.)
  • Supports error handling and continueOnFail
  • Installation

    Community nodes (recommended)

    In n8n:

    1. Go to Settings -> Community nodes -> Install.
    2. Find the app by npm Package Name “n8n-nodes-zadarma-app”

    After install:

    1. Credentials → Create New → Zadarma
    2. Enter API Key + Secret from https://my.zadarma.com/marketplace/
    3. Add Zadarma node to workflow

    Restart n8n if required.

    Manual installation

    npm install n8n-nodes-zadarma-app
    

    Or for local development (restart n8n after setting the variable):

    export N8NCUSTOMEXTENSIONS=/path/to/custom-nodes
    

    Usage example

    You can find more examples in our instruction page https://zadarma.com/en/support/instructions/n8n/

    Sending SMS from n8n

    Trigger – receiving a third-party Webhook, action – sending an SMS.
    In the Workflows section, click the Create workflow button then Add first step find and select the Webhook node.

    #### Trigger – Webhook

    Select the type of Webhook URL: Test URL or Production URL. In the HTTP Method field, choose the POST request type.

    #### Webhook settings

    Click Listen for event and copy the URL to which the Webhooks will be sent. After that, you need to receive a test Webhook so that the trigger can obtain a list of parameters for further use. For testing, we can send a POST request to our Webhook, for example using a bash script:

    curl -X POST https://n8n.yourdomain.com/webhook-test/a5bbc64f-2714-446a-bfff-01b0fedbxab0 
    -H "Content-Type: application/json" 
    -d '{"text": "Wake up, Neo...", "phone": "+44201234567"}'
    
  • https://n8n.yourdomain.com/webhook-test/a5bbc64f-2714-446a-bfff-01b0fedbxab0 – The URL of your webhook in n8n.
  • Next, add a second step to your Workflow.
    In the search, find Zadarma and select the Create SMS action.

    #### Zadarma Create SMS

    On the left side of the window, the structure of the test Webhook notification received in the previous step will be displayed. Drag the required parameters into the corresponding fields for sending the SMS. In our example, two parameters were received, Text and Phone, which will be used as the SMS text and the recipient’s phone number respectively. You may have any other parameters.

    #### SMS Parameters

    Close the window. The setup is complete. Your Workflow is ready to run and publish. Now, when a Webhook is received at your URL, an SMS message will be sent.

    Credentials

    This node requires Zadarma API credentials.

    Create new credentials in n8n:

  • API Token (required) from https://my.zadarma.com/marketplace/

The credentials are securely stored by n8n and used for all requests to the Zadarma API.

Supported Resources & Operations

| Resource | Operations |
|———-|———————|
| Lead | Get, Create, Update |
| Callback | Create |
| Customer | Get, Create, Update |
| Event | Create, Update |
| SMS | Create |

License

MIT

Changelog

See CHANGELOG.md for release history.