Actions4
- Комиссии Actions
- Коэффициенты Складов Actions
- Стоимость Возврата Продавцу Actions
Overview
This node interacts with the Wildberries (WB) API to retrieve tariff commission information. Specifically, for the "Комиссии" resource and the "Get Tariffs Commission" operation, it fetches commission tariffs data localized in a specified language. This is useful for businesses or sellers on the WB platform who want to programmatically access commission rates and related tariff details in their preferred language.
Practical examples include:
- Automatically fetching updated commission tariffs to adjust pricing strategies.
- Integrating commission data into financial reports or dashboards.
- Localizing commission information for different regional teams by specifying the locale.
Properties
| Name | Meaning |
|---|---|
| Locale | Language of the response fields parentName and subjectName. Options: ru (Russian), en (English), zh (Chinese). Default is ru. |
Output
The node outputs JSON data containing tariff commission details as returned by the WB API. The structure includes localized fields such as parentName and subjectName based on the selected locale. The exact schema depends on the API response but generally includes commission rates and tariff categories.
No binary data output is indicated.
Dependencies
- Requires an API key credential for authenticating with the WB API.
- The node uses a base URL derived from a bundled OpenAPI specification (
09-tariffs_modified.json). - No additional external dependencies beyond the WB API and standard HTTP headers (
Accept: application/json,Content-Type: application/json).
Troubleshooting
Common issues:
- Invalid or missing API authentication token may cause authorization errors.
- Incorrect locale values might result in untranslated or missing fields.
- Network connectivity problems can prevent successful API calls.
Error messages:
- Authorization errors typically indicate invalid or expired credentials; verify and update the API key.
- Validation errors may occur if unsupported locale values are provided; ensure locale is one of
ru,en, orzh. - Timeout or connection errors suggest network issues; check internet connectivity and API availability.
Links and References
- Wildberries API documentation (for tariffs and commissions) — consult the official WB API docs for detailed field descriptions and usage.
- n8n documentation on creating custom nodes and using API credentials.