Delivery: parcel change result
delivery_change_parcel_resultReports the outcome of a parcel change request to Avito, indicating whether it was approved or declined. Includes optional rejection reason and result options.
Instructions
[3PL] Sends Avito the outcome of a parcel change request previously sent via delivery_change_parcels: the delivery service reports whether the request was approved (approved) or rejected (declined). A production method on the delivery-service side — on a regular seller account it returns 403/404.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Identifier of the parcel change request. | |
| status | Yes | Request processing status. Enum: approved | declined. | |
| reason | No | Rejection reason; filled in when status=declined (optional). | |
| options | No | Additional result options (optional). | |
| 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. |