eBay Create or Replace Inventory Item
*Summary of Changes:* (The purpose of this table is to keep traceability and Product team to highlight the things that were changed into the scope, based on comments or discussions)
Date | Version | Name | Applied changes |
---|---|---|---|
17.02.2025 | v1.0 | Bogomil Pavlov | First Published |
This call creates a new inventory item record or replaces an existing inventory item record. It is up to sellers whether they want to create a complete inventory item record right from the start, or sellers can provide only some information with the initial createOrReplaceInventoryItem call, and then make one or more additional createOrReplaceInventoryItem calls to complete all required fields for the inventory item record and prepare it for publishing. Upon first creating an inventory item record, only the SKU value in the call path is required.
URL: POST https://api.ebay.com/sell/inventory/v1/bulk_create_or_replace_inventory_item
Documentation:https://developer.ebay.com/api-docs/sell/inventory/resources/inventory_item/methods/bulkCreateOrReplaceInventoryItem
Sample Request:
{
"requests": [
{
"sku": "B********s",
"locale": "en_US",
"product": {
"title": "Boston Terriers Collector Plate "All Ears by Dan Hatala - The Danbury Mint",
"aspects": {
"Country/Region of Manufacture": [
"United States"
]
},
"description": "All Ears by Dan Hatala. A limited edition from the collection entitled 'Boston Terriers'. Presented by The Danbury Mint.",
"imageUrls": [
"https://i*****g.com/0**********/**********F"
]
},
"condition": "USED_EXCELLENT",
"conditionDescription": "Mint condition. Kept in styrofoam case. Never displayed.",
"availability": {
"shipToLocationAvailability": {
"quantity": 2
}
}
},
{
"sku": "J********h",
"locale": "en_US",
"product": {
"title": "JOE PAVELSKI 2015-16 BOBBLEHEAD NHL SAN JOSE SHARKS 25TH ANNIVERSARY",
"aspects": {
"Team": [
"San Jose Sharks"
],
"Player": [
"Joe Pavelski"
],
"Pre & Post Season": [
"Regular Season"
],
"Product": [
"Bobblehead"
],
"Country/Region of Manufacture": [
"China"
],
"Brand": [
"Success Promotions"
],
"UPC": [
"Does not apply"
]
},
"description": "Joe Pavelski bobble head from 2015-16 season, the 25th season of the San Jose Sharks. New in box.",
"imageUrls": [
"https://i*****g.com/0**********/**********F"
]
},
"condition": "NEW",
"availability": {
"shipToLocationAvailability": {
"quantity": 1
}
}
}
]
}
Request Mapping:
eBay Field | Hemi Field | Required | Comment | |
---|---|---|---|---|
Sample Response:
{
"responses": [
{
"statusCode": 201,
"sku": "B********s",
"locale": "en_US",
"warnings": [],
"errors": []
},
{
"statusCode": 201,
"sku": "J********h",
"locale": "en_US",
"warnings": [],
"errors": []
}
]
}