Delivery: create parcel [sandbox]
delivery_create_sandbox_parcel_v2Creates a test parcel in the Sandbox environment, returning a parcelID for testing parcel lifecycle calls without real-world consequences.
Instructions
[SANDBOX v2] Creates a test parcel in the Sandbox (no real-world effect) and returns its parcelID — the entry point for the sandbox parcel lifecycle: feed that id into delivery_v1_get_parcel_info, delivery_v1_get_registered_parcel_id, delivery_v1_change_parcel and delivery_v1_cancel_parcel. Unlike delivery_create_parcel ([3PL] production creation), this has no consequences. For delivery-service PARTNERS testing only.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| items | No | Parcel contents — items (optional). | |
| options | No | Additional test-parcel options (optional). | |
| receiver | No | Receiver: full name, phone, address/pickup-point code (optional). | |
| sender | No | Sender: details and sending node (optional). | |
| tags | No | Test-parcel tags for Sandbox scenarios (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. |