⚠️ Orders: tracking number
orders_set_tracking_numberSubmit a tracking number for an Avito order, enabling buyer tracking. Use when the setTrackNumber action is available or to correct an existing number.
Instructions
⚠️ Submits the parcel tracking number for delivery by the seller's partners (set_tracking_number, DBS). Write/public operation: the tracking number is visible to the buyer for tracking. Call it when the order has an available setTrackNumber action (or fixTrackNumber to correct it). The response contains a success flag; on error, code: incorrect_number (invalid number) or already_set (the number is already attached to another order).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| orderId | Yes | Avito order ID. | |
| trackingNumber | Yes | Parcel tracking number from the delivery service (e.g. "01-01031002199"). | |
| dryRun | No | v0.7.0: if true — returns a preview of the HTTP request without calling the Avito API. Safe for inspecting exactly what would be done. Default: the value of AVITO_MCP_DRY_RUN_DEFAULT (usually false). | |
| idempotencyKey | No | v0.7.0: optional key for duplicate protection. A repeat call with the same key within AVITO_MCP_IDEMPOTENCY_TTL_SEC returns the cached result. The same key with different args returns a conflict error — this is safe by design. |