Amocrm icon

Amocrm

Consume AmoCRM API

Overview

This node interacts with the AmoCRM platform to retrieve a list of unsorted items. It is useful for scenarios where users want to fetch unsorted records such as calls, chats, forms, or mails from AmoCRM for further processing or analysis. For example, a user might want to get all unsorted calls from a specific pipeline or filter unsorted items by their unique IDs.

Use Case Examples

  1. Retrieve all unsorted items from AmoCRM using OAuth2 authentication.
  2. Fetch unsorted items filtered by specific categories like 'Call (SIP)' and 'Mail'.
  3. Get a paginated list of unsorted items sorted by creation date in descending order.

Properties

Name Meaning
Authentication Method used to authenticate with AmoCRM, either Long Lived Token or OAuth2.
Return All Whether to return all unsorted items or limit the number of results.
Filter Filters to narrow down the unsorted items retrieved, including filtering by unsorted UIDs, categories, and pipeline IDs.
Options Additional options such as sorting the results by created or updated date, and specifying ascending or descending order.
Page Page number to retrieve when not returning all results.
Limit Maximum number of results to return when not returning all.

Output

JSON

  • unsortedItems - Array of unsorted items retrieved from AmoCRM, each item containing details such as UID, category, pipeline ID, creation and update timestamps.

Dependencies

  • Requires authentication credentials for AmoCRM, either a Long Lived Token or OAuth2 credentials.

Troubleshooting

  • Ensure that the authentication credentials are valid and have the necessary permissions to access unsorted items in AmoCRM.
  • If filtering by pipeline IDs, verify that the pipeline IDs or names are correct and accessible.
  • When using pagination, ensure the page number and limit are within valid ranges to avoid empty results.
  • Check network connectivity and AmoCRM API status if requests fail or time out.

Links

Discussion