Delivery: set parcel properties [sandbox]
delivery_set_order_propertiesSet the delivery parameters (e.g., final cost) for an Avito parcel order. Send the complete set each call; values are replaced entirely.
Instructions
[SANDBOX] Sets a parcel's delivery parameters on Avito — e.g. the final delivery cost. Idempotent by overwrite: each call REPLACES the previous values, so always send the complete current set, not a delta. Returns an empty 200 on success. For delivery-service PARTNERS only (not regular sellers). Sibling tools: delivery_set_order_real_address sets the pickup address, delivery_tracking pushes a status event — this one only sets cost/parameters.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| orderId | Yes | Order identifier. | |
| properties | Yes | Parcel delivery parameters (for example, the final delivery cost). | |
| 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. |