ebay_revise_listing
Revise an existing eBay fixed-price listing by updating specific fields such as quantity, price, or title. Send only the fields to change.
Instructions
Revise an existing fixed-price listing. Update quantity, price, title, description, or any other field.
Uses the Trading API (ReviseFixedPriceItem). Only send the fields you want to change.
Examples:
Update quantity: { "Quantity": 10 }
Update price: { "StartPrice": 14.99 }
Update title: { "Title": "New Title" }
Multiple fields: { "Quantity": 10, "StartPrice": 14.99 }
Required: User OAuth token.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| itemId | Yes | The eBay item ID to revise | |
| fields | Yes | Fields to update (e.g., { "Quantity": 10, "StartPrice": 14.99 }) |