Actions31
- Company Actions
- Contact Actions
- Deal Actions
- Item Actions
- Lead Actions
- User Custom Method Actions
Overview
This node integrates with the Bitrix24 REST API to perform operations on CRM entities. Specifically, for the Deal resource and the Get operation, it retrieves detailed information about a single deal record by its unique ID. This is useful in scenarios where you need to fetch up-to-date data about a specific sales deal, such as when automating follow-ups, generating reports, or syncing deal data with other systems.
Practical examples include:
- Fetching a deal's details after receiving a webhook notification about an update.
- Retrieving deal information to enrich customer profiles in a marketing automation workflow.
- Using deal data to trigger conditional logic in a sales pipeline automation.
Properties
| Name | Meaning |
|---|---|
| Authentication | Method of authenticating with Bitrix24 API. Options: OAuth2, Webhook |
| ID | The unique identifier of the deal record to retrieve (required). Example: "12345" |
Output
The node outputs JSON data representing the full details of the requested deal record as returned by the Bitrix24 API. This typically includes fields such as deal title, stage, amount, contact info, dates, and custom fields configured in Bitrix24.
If the node supports binary data output (not indicated here), it would represent attachments or files related to the deal, but this is not evident from the provided code.
Dependencies
- Requires access to the Bitrix24 REST API.
- Needs either OAuth2 credentials or a Webhook URL/token configured in n8n for authentication.
- No additional external dependencies are indicated.
Troubleshooting
- Missing or invalid ID: The node requires a valid deal ID; ensure the ID is correctly provided and exists in Bitrix24.
- Authentication errors: Verify that the selected authentication method is properly configured and authorized.
- API rate limits or connectivity issues: Network problems or Bitrix24 API limits may cause failures; check API status and retry policies.
- Unexpected response structure: If Bitrix24 changes their API, the node might return unexpected data; verify API version compatibility.