curl --request POST \
--url https://api.auctionnow.io/api/alpha/merchant/products \
--header 'Authorization: <authorization>' \
--header 'Content-Type: application/json' \
--data '
{
"data": {
"title": "<string>",
"description": "<string>",
"price": 1,
"quantity": 2,
"shippingCostUS": 1,
"shippingCostInternational": 1,
"productType": "PHYSICAL",
"scheduledStartTime": 123,
"urls": [
"<string>"
],
"digitalLink": "<string>",
"customMessage": "<string>",
"isArchived": true
}
}
'{
"data": {
"_id": "<string>",
"_creationTime": 123,
"title": "<string>",
"description": "<string>",
"slug": "<string>",
"handle": "<string>",
"partyId": "<string>",
"price": 123,
"quantity": 123,
"quantityAvailable": 123,
"shippingCostUS": 123,
"shippingCostInternational": 123,
"status": "<string>",
"productType": "PHYSICAL",
"type": "AUCTION_AND_PRODUCT",
"image": "<string>",
"digitalLink": "<string>",
"customMessage": "<string>",
"url": "<string>",
"isArchived": true
},
"timestamp": 123,
"message": "<string>"
}Your Auction Now API key as a Bearer token
"Bearer ak_XXXXXXX"
Input data for creating a new product
Show child attributes
curl --request POST \
--url https://api.auctionnow.io/api/alpha/merchant/products \
--header 'Authorization: <authorization>' \
--header 'Content-Type: application/json' \
--data '
{
"data": {
"title": "<string>",
"description": "<string>",
"price": 1,
"quantity": 2,
"shippingCostUS": 1,
"shippingCostInternational": 1,
"productType": "PHYSICAL",
"scheduledStartTime": 123,
"urls": [
"<string>"
],
"digitalLink": "<string>",
"customMessage": "<string>",
"isArchived": true
}
}
'{
"data": {
"_id": "<string>",
"_creationTime": 123,
"title": "<string>",
"description": "<string>",
"slug": "<string>",
"handle": "<string>",
"partyId": "<string>",
"price": 123,
"quantity": 123,
"quantityAvailable": 123,
"shippingCostUS": 123,
"shippingCostInternational": 123,
"status": "<string>",
"productType": "PHYSICAL",
"type": "AUCTION_AND_PRODUCT",
"image": "<string>",
"digitalLink": "<string>",
"customMessage": "<string>",
"url": "<string>",
"isArchived": true
},
"timestamp": 123,
"message": "<string>"
}