Actions34
- Сборочные Задания Actions
- Метаданные Actions
- Поставки FBS Actions
- Post Supplies
- Get Supplies
- Patch Supplies Orders By Supplyid By Orderid
- Get Supplies By Supplyid
- Delete Supplies By Supplyid
- Get Supplies Orders By Supplyid
- Patch Supplies Deliver By Supplyid
- Get Supplies Barcode By Supplyid
- Get Supplies Trbx By Supplyid
- Post Supplies Trbx By Supplyid
- Delete Supplies Trbx By Supplyid
- Patch Supplies Trbx By Supplyid By Trbxid
- Delete Supplies Trbx Orders By Supplyid By Trbxid By Orderid
- Post Supplies Trbx Stickers By Supplyid
- Пропуска Actions
- Доставка Курьером WB DBW Actions
Overview
This node interacts with the Wildberries (WB) API specifically for managing warehouse contact information under the resource "Доставка Курьером WB DBW" (Courier Delivery WB DBW). The operation "Put Warehouses Contacts By Warehouseid" allows users to update or set the contact details associated with a specific seller's warehouse by its ID.
Typical use cases include:
- Updating contact persons and phone numbers for a warehouse to ensure delivery personnel have accurate communication details.
- Managing multiple contacts per warehouse, including comments or instructions relevant to contacting them.
- Automating warehouse contact updates as part of order fulfillment workflows.
For example, a user might provide the warehouse ID and a JSON array of contacts with phone numbers and comments specifying best times to call or contact preferences.
Properties
| Name | Meaning |
|---|---|
| Warehouse Id | The unique numeric identifier of the seller's warehouse to update contacts for. |
| Contacts | A JSON array of contact objects, each containing: |
- phone: Contact phone number (string) |
|
- comment: Optional comment or instructions related to the contact (string) |
Example value for Contacts:
[
{
"comment": "Иванов Иван Иванович. Звонить с 10 до 21 часа.",
"phone": "+79998887766"
}
]
Output
The node outputs the response from the WB API after updating the warehouse contacts. This output is available in the json field of the node's output data. The structure depends on the API response but typically includes confirmation of the update or error details if the request failed.
No binary data output is produced by this node.
Dependencies
- Requires an API key credential for authenticating with the Wildberries API.
- The node uses a base URL configured from a bundled OpenAPI specification.
- Proper network access to the Wildberries API endpoint is necessary.
Troubleshooting
- Invalid Warehouse Id: If the provided warehouse ID does not exist or is incorrect, the API may return an error indicating the warehouse was not found. Verify the warehouse ID before running the node.
- Malformed Contacts JSON: The contacts property expects valid JSON. Errors parsing this JSON will cause the node to fail. Ensure the JSON syntax is correct and matches the expected structure.
- Authentication Errors: Missing or invalid API credentials will result in authorization errors. Confirm that the API key credential is correctly configured and has sufficient permissions.
- API Rate Limits or Downtime: If the API is temporarily unavailable or rate limits are exceeded, the node may throw errors. Retry after some time or check API status.
Links and References
- Wildberries API documentation (general): https://openapi.wildberries.ru/
- n8n documentation on creating custom nodes: https://docs.n8n.io/integrations/creating-nodes/