Actions16
- Сборочные Задания DBS Actions
- Метаданные DBS Actions
Overview
This node interacts with the Wildberries (WB) API specifically for handling "Сборочные Задания DBS" (DBS Assembly Tasks). The operation "Post Dbs Groups Info" allows users to send a list of group IDs related to assembly tasks. This is useful when you want to post or update information about specific groups of DBS orders, for example, to track or manage batches of orders in the DBS system.
Practical scenarios include:
- Sending updated group information after processing new or completed DBS assembly tasks.
- Integrating DBS order group data into workflows that automate inventory or logistics management.
- Synchronizing group-related data between WB API and other systems.
Properties
| Name | Meaning |
|---|---|
| Groups | A JSON array containing values of groupId. These group IDs can be obtained from new or completed DBS assembly tasks endpoints. The property expects a JSON string representing an array of group IDs. |
Output
The node outputs JSON data returned by the WB API after posting the groups info. The exact structure depends on the API response but generally includes confirmation or status details about the posted groups.
No binary data output is indicated.
Dependencies
- Requires access to the Wildberries API.
- Needs an API key credential for authentication with the WB API.
- The node uses a base URL and request defaults configured from a bundled OpenAPI specification.
- No additional external dependencies beyond the WB API and its authentication are required.
Troubleshooting
- Invalid JSON in Groups: If the
Groupsinput is not valid JSON or does not parse correctly, the node will fail. Ensure the input is a properly formatted JSON array of group IDs. - Authentication Errors: Missing or invalid API credentials will cause authorization failures. Verify that the API key or token is correctly set up in n8n credentials.
- API Endpoint Changes: Since the node relies on a specific version of the WB API, any changes or deprecations in the API might cause errors. Check the WB API documentation if unexpected errors occur.
- Empty or Null Group IDs: Passing null or empty arrays may result in no action or errors from the API. Always provide valid group IDs.
Links and References
- Wildberries DBS Orders API Documentation (replace with actual link)
- n8n Documentation on Creating Custom Nodes
- JSON Format Guide