Actions28
- Unsorted Actions
- Lead Actions
- Account Actions
- Catalog Actions
- Note Actions
- Company Actions
- Task Actions
- Contact Actions
Overview
This node allows users to edit catalogs in AmoCRM by updating catalog details such as name, permissions for adding elements, and linking capabilities. It supports two authentication methods (Long Lived Token and OAuth2) and offers flexibility in input format, either as structured properties or as a JSON string. This node is useful for automating catalog management tasks within AmoCRM, such as updating multiple catalogs' settings programmatically.
Use Case Examples
- Updating the name and permissions of multiple catalogs in AmoCRM in a single workflow run.
- Using a JSON string to batch update catalog properties for integration with other systems.
Properties
| Name | Meaning |
|---|---|
| Authentication | Selects the authentication method to use for connecting to AmoCRM (Long Lived Token or OAuth2). |
| JSON Parameters | Determines whether the input catalog data is provided as a JSON string or as structured properties. |
| Stringifyed Array of Objects | A JSON string representing an array of catalog objects to update, used when JSON Parameters is true. |
| Catalogs | A collection of catalog objects to update, each with properties such as ID, name, permissions, and an optional request ID for tracking. |
Output
JSON
updatedCatalogs- An array of catalog objects reflecting the updated catalog details after the operation.
Dependencies
- Requires authentication credentials for AmoCRM, either a long-lived token or OAuth2 credentials.
Troubleshooting
- Ensure the authentication credentials are valid and have the necessary permissions to update catalogs in AmoCRM.
- If using JSON Parameters, verify that the JSON string is correctly formatted and represents an array of catalog objects.
- Check that each catalog object includes a valid ID and required fields such as name.
- Common errors may include authentication failures, invalid catalog IDs, or malformed input data.
Links
- AmoCRM API Documentation - Catalogs - Official AmoCRM API documentation for managing catalogs, including update operations.