Skip to main content
POST
/
alpha
/
merchant
/
auctions
Create a new auction
curl --request POST \
  --url https://api.example.com/alpha/merchant/auctions \
  --header 'Content-Type: application/json' \
  --data '
{
  "data": {
    "title": "<string>",
    "description": "<string>",
    "startingPrice": 1,
    "startTime": 123,
    "endTime": 123,
    "shippingCostUS": 1,
    "shippingCostInternational": 1,
    "urls": [
      "<string>"
    ],
    "binAble": true,
    "binAmount": 123,
    "productId": "<string>",
    "productType": "PHYSICAL",
    "digitalLink": "<string>",
    "customMessage": "<string>",
    "externalProductId": "<string>",
    "externalSubtenantId": "<string>",
    "details": {}
  }
}
'
{
  "data": {
    "_id": "<string>",
    "_creationTime": 123,
    "title": "<string>",
    "description": "<string>",
    "startingPrice": 1,
    "startTime": 123,
    "endTime": 123,
    "shippingCostUS": 1,
    "shippingCostInternational": 1,
    "bidIncrement": 123,
    "partyId": "<string>",
    "slug": "<string>",
    "handle": "<string>",
    "binAble": true,
    "binAmount": 123,
    "productId": "<string>",
    "externalProductId": "<string>",
    "externalSubtenantId": "<string>",
    "details": {},
    "currentBidAmount": 123,
    "productUrl": "<string>"
  },
  "timestamp": 123,
  "message": "<string>"
}

Body

application/json
data
object
required

Response

Create a new auction

data
object
required
timestamp
number
required
message
string
required