Actions4
- Комиссии Actions
- Коэффициенты Складов Actions
- Стоимость Возврата Продавцу Actions
Overview
This node interacts with the Wildberries (WB) API to retrieve tariff information related to warehouse coefficients. Specifically, the "Get Tariffs Box" operation fetches tariff data for boxes on a specified date. This can be useful for logistics, inventory management, or financial analysis where understanding storage or shipping tariffs on particular dates is necessary.
Practical examples include:
- Calculating costs associated with storing goods in warehouses on specific dates.
- Integrating tariff data into supply chain dashboards.
- Automating tariff retrieval for accounting or reporting purposes.
Properties
| Name | Meaning |
|---|---|
| Date | The date for which tariff box information is requested, formatted as YYYY-MM-DD. |
Output
The node outputs JSON data containing tariff details for boxes corresponding to the specified date. The exact structure depends on the WB API response but generally includes tariff rates and related metadata.
If binary data were involved, it would typically represent files or media; however, this node focuses on JSON tariff data only.
Dependencies
- Requires an API key credential for authenticating with the Wildberries API.
- Depends on the WB API endpoint configured via the base URL extracted from the bundled OpenAPI specification.
- Uses HTTP headers specifying JSON content type and acceptance.
- No additional external services are required beyond access to the WB API.
Troubleshooting
Common issues:
- Invalid or missing date format: Ensure the date is provided in
YYYY-MM-DDformat. - Authentication errors: Verify that the API key credential is correctly set up and has sufficient permissions.
- Network or connectivity problems: Confirm that the WB API endpoint is reachable from your environment.
- Invalid or missing date format: Ensure the date is provided in
Error messages:
- 400 Bad Request: Likely due to malformed date or missing required parameters.
- 401 Unauthorized: Indicates invalid or missing API authentication.
- 500 Internal Server Error: Could be temporary; retry after some time or check WB API status.
Resolving these usually involves validating input parameters, checking credentials, and ensuring network connectivity.
Links and References
- Wildberries API documentation (refer to official WB API docs for tariff endpoints)
- n8n HTTP Request node documentation (for understanding request configuration)
- JSON date formatting standards (ISO 8601)