eBay · Schema

PlaceProxyBidRequest

The type that defines the fields for placing a proxy bid.

AuctionsCommerceProductsMarketplaceFortune 500

Properties

Name Type Description
maxAmount object The amount of the proxy bid to be placed. This is the maximum amount the buyer is willing to pay for the item.

Note:
  • Currency for the bid must be the currency specified by the
userConsent object Specifies whether the buyer wants to give their consent to bid on adult-only items. For a buyer to bid on an adult-only item, you must collect their consent using this field, and they must agree to th
View JSON Schema on GitHub

JSON Schema

ebay-placeproxybidrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PlaceProxyBidRequest",
  "title": "PlaceProxyBidRequest",
  "type": "object",
  "properties": {
    "maxAmount": {
      "description": "The amount of the proxy bid to be placed. This is the maximum amount the buyer is willing to pay for the item. <br><br><b>Note: </b>  <ul>  <li>Currency for the bid must be the currency specified by the seller when listing the item.</li>    <li>VAT (value added tax) does not need to be added to the proxy bid amount even if VAT applies.  </li>  </ul>  ",
      "$ref": "#/components/schemas/Amount"
    },
    "userConsent": {
      "description": "Specifies whether the buyer wants to give their consent to bid on adult-only items. For a buyer to bid on an adult-only item, you must collect their consent using this field, and they must agree to the Terms of Use. <p>For more information about adult-only items on eBay, see  <a href=\"https://www.ebay.com/help/terms-conditions/default/searching-adult-items?id=4661\" target=\"_blank\">Adult-Only items on eBay</a>.</p> <p><b>Default: </b>false </p>",
      "$ref": "#/components/schemas/UserConsent"
    }
  },
  "description": "The type that defines the fields for placing a proxy bid."
}