Bitrix24 integration with n8n
I found this, it's quite general, but it gives you an idea of how it could work and how to run tests. I hope it helps you. Links:https://n8n.io/integrations/bitrix24/https://www.bitrix24.com/apps/app/vebstudiya_redham.resthooks_wom/API Documentationhttps://apidocs.bitrix24.com/ Guide: Connecting Bitrix24 with n8n 1. Obtain Bitrix24 CredentialsTo connect Bitrix24 with n8n, you can use the Bitrix24 API directly or the API & Webhooks app from the Bitrix24 marketplace, which simplifies webhook setup and API interaction, though it is limited to 50 calls per day. Steps: - Access Bitrix24 - Configure the "API & Webhooks" App (Optional if not using the API directly) 2. Configure n8nSince Bitrix24 does not have a native node in n8n, we will use the HTTP Request node to interact with the Bitrix24 API. Steps: - Open n8n and create a new workflow. - Add an "HTTP Request" node. 3. Example: Retrieve Users from Bitrix24To get the list of users, configure the HTTP Request node as follows: - Method: POST - URL:https://YOURDOMAIN.bitrix24.com/rest/WEBHOOK/user.getorhttps://YOURDOMAIN.bitrix24.com/rest/USER_ID/TOKEN_AUTH/user.get - Expected Response: A JSON object containing the user list. 4. Example: Create a Lead in Bitrix24If you want to create a potential customer, use the following configuration: - Method: POST - URL:https://YOURDOMAIN.bitrix24.com/rest/WEBHOOK/CRM.LEAD.ADDorhttps://YOURDOMAIN.bitrix24.com/rest/USER_ID/TOKEN_AUTH/CRM.LEAD.ADD - Body:When running this flow in n8n, you should receive a Lead ID if the operation is successful.