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.
Guide: Connecting Bitrix24 with n8n
- 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)
- 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.
- Example: Retrieve Users from Bitrix24To get the list of users, configure the HTTP Request node as follows:
- Example: Create a Lead in Bitrix24If you want to create a potential customer, use the following configuration:
Additional Considerations:
- Authentication: Ensure that webhooks and APIs you use are properly authenticated to maintain data security.
- Call Limits: The API & Webhooks app is limited to 50 calls per day. For higher usage, it is recommended to use the direct Bitrix24 API.
- Error Handling: Implement mechanisms in n8n to manage possible errors in HTTP requests.
- Testing: Before deploying to production, run extensive tests to ensure the integration works as expected.