<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic How To Change The Existing Items Size Description In EBay Listing (2nd time post) in Selling</title>
    <link>https://community.ebay.com.au/t5/Selling/How-To-Change-The-Existing-Items-Size-Description-In-EBay/m-p/2244680#M186343</link>
    <description>&lt;P&gt;We used "Merchant Integration Platform" to upload new item(s) to ebay - using CSV file. It works every day - no problem.&lt;/P&gt;&lt;P&gt;But we want to update the Size Description in listing items.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In our fashion listings, 1 item has multiple sizes. In eBay, each size has a unique SKU and a size description. All sizes of the items have same "Variation Group ID". So each size is associated to the same 1 "Variation Group ID".&lt;/P&gt;&lt;P&gt;Those sizes look like: "Size","US6/EU36/UK3.5" We want to change/update the Size Description - like to be "US6" or "EU36" or "ANY OTHER STRING"&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What I have tried: I have tried using the API call. But it does not ALWAYS work. It only worked in few cases. In following example, I tried to update Size for SKU=00000569201&amp;nbsp; in ebay using API call.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It seems it worked/updated size desc internally , not on website or ebay seller central console.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;TECH DETAILS:&lt;/P&gt;&lt;P&gt;1) curl -s "&lt;A href="https://api.ebay.com/sell/inventory/v1/inventory_item/00000569201" target="_blank"&gt;https://api.ebay.com/sell/inventory/v1/inventory_item/00000569201&lt;/A&gt;" -X GET -H "Authorization: Bearer $TOKEN_VALID_2_HOURS"&lt;/P&gt;&lt;P&gt;Got response:&lt;/P&gt;&lt;P&gt;{"sku":"00000569201","locale":"en_AU","groupIds":["000005692"],"inventoryItemGroupKeys":["000005692"],"product":{"title":"Collonil Shoe Horn 15cm Metal","aspects":{"Size":["1 UNIT"]},"description":"&amp;lt;p&amp;gt;These shoe horns are made from top quality metal/plastic. For ease of use in putting on and removing footwear.&amp;lt;/p&amp;gt; &amp;lt;p&amp;gt;Depending on availability of colours, you may not receive the colour pictured.&amp;lt;/p&amp;gt; &amp;lt;p&amp;gt;&amp;amp;nbsp;&amp;lt;/p&amp;gt;","brand":"Collonil","upc":["does not apply"]},"condition":"NEW","availability":{"pickupAtLocationAvailability":[],"shipToLocationAvailability":{"quantity":8}}}&lt;/P&gt;&lt;P&gt;It means size: "1 UNIT"&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;2) If I want to change the size to be "1 U", I ran&lt;/P&gt;&lt;P&gt;curl -s "&lt;A href="https://api.ebay.com/sell/inventory/v1/bulk_create_or_replace_inventory_item" target="_blank"&gt;https://api.ebay.com/sell/inventory/v1/bulk_create_or_replace_inventory_item&lt;/A&gt;" -X POST -H "Content-Type: application/json" -H "Authorization: Bearer $TOKEN_VALID_2_HOURS" -d '{"requests":[{"availability":{"pickupAtLocationAvailability":[],"shipToLocationAvailability":{"quantity":8}},"condition":"NEW","product":{"aspects":{"Size":["1 U"]},"brand":"Collonil","description":"&amp;lt;p&amp;gt;These shoe horns are made from top quality metal/plastic. For ease of use in putting on and removing footwear.&amp;lt;/p&amp;gt; &amp;lt;p&amp;gt;Depending on availability of colours, you may not receive the colour pictured.&amp;lt;/p&amp;gt; &amp;lt;p&amp;gt;&amp;amp;nbsp;&amp;lt;/p&amp;gt;","title":"Collonil Shoe Horn 15cm Metal","upc":["does not apply"]},"sku":"00000569201","locale":"en_AU"}]}'&lt;/P&gt;&lt;P&gt;Got response:&lt;BR /&gt;{"errors": [{&lt;BR /&gt;"errorId": 2003,&lt;BR /&gt;"domain": "ACCESS",&lt;BR /&gt;"category": "APPLICATION",&lt;BR /&gt;"message": "Internal error",&lt;BR /&gt;"longMessage": "There was a problem with an eBay internal system or process. Contact eBay developer support for assistance",&lt;BR /&gt;"parameters": [{&lt;BR /&gt;"name": "reason",&lt;BR /&gt;"value": "Failed to transform underlying error response, see logs."&lt;BR /&gt;}]&lt;BR /&gt;}]}&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;3) Check details:&lt;/P&gt;&lt;P&gt;curl -s "&lt;A href="https://api.ebay.com/sell/inventory/v1/inventory_item/00000569201" target="_blank"&gt;https://api.ebay.com/sell/inventory/v1/inventory_item/00000569201&lt;/A&gt;" -X GET -H "Authorization: Bearer $TOKEN_VALID_2_HOURS"&lt;/P&gt;&lt;P&gt;Got response:&lt;/P&gt;&lt;P&gt;{"sku":"00000569201","locale":"en_AU","groupIds":["000005692"],"inventoryItemGroupKeys":["000005692"],"product":{"title":"Collonil Shoe Horn 15cm Metal","aspects":{"Size":["1 U"]},"description":"&amp;lt;p&amp;gt;These shoe horns are made from top quality metal/plastic. For ease of use in putting on and removing footwear.&amp;lt;/p&amp;gt; &amp;lt;p&amp;gt;Depending on availability of colours, you may not receive the colour pictured.&amp;lt;/p&amp;gt; &amp;lt;p&amp;gt;&amp;amp;nbsp;&amp;lt;/p&amp;gt;","brand":"Collonil","upc":["does not apply"]},"condition":"NEW","availability":{"pickupAtLocationAvailability":[],"shipToLocationAvailability":{"quantity":8}}}&lt;/P&gt;&lt;P&gt;It means Size got changed to "1 U" internally - even with error in previous API call.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;4) Check the ebay seller central console - search the item using SKU.&lt;BR /&gt;The Size in ebay (GUI and webpage link are still the old desc: "1 UNIT".&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Question:&lt;BR /&gt;i) Does that mean the API call (bulk_create_or_replace_inventory_item) does change the {aspects -&amp;gt; Size} internally, but not updated in GUI/ebay web site?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ii) If using API call: bulk_create_or_replace_inventory_item and response is error, does that mean it still worked internally or should we try the same API call again?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 17 Jun 2019 23:43:20 GMT</pubDate>
    <dc:creator>thewalkingco</dc:creator>
    <dc:date>2019-06-17T23:43:20Z</dc:date>
    <item>
      <title>How To Change The Existing Items Size Description In EBay Listing (2nd time post)</title>
      <link>https://community.ebay.com.au/t5/Selling/How-To-Change-The-Existing-Items-Size-Description-In-EBay/m-p/2244680#M186343</link>
      <description>&lt;P&gt;We used "Merchant Integration Platform" to upload new item(s) to ebay - using CSV file. It works every day - no problem.&lt;/P&gt;&lt;P&gt;But we want to update the Size Description in listing items.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In our fashion listings, 1 item has multiple sizes. In eBay, each size has a unique SKU and a size description. All sizes of the items have same "Variation Group ID". So each size is associated to the same 1 "Variation Group ID".&lt;/P&gt;&lt;P&gt;Those sizes look like: "Size","US6/EU36/UK3.5" We want to change/update the Size Description - like to be "US6" or "EU36" or "ANY OTHER STRING"&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What I have tried: I have tried using the API call. But it does not ALWAYS work. It only worked in few cases. In following example, I tried to update Size for SKU=00000569201&amp;nbsp; in ebay using API call.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It seems it worked/updated size desc internally , not on website or ebay seller central console.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;TECH DETAILS:&lt;/P&gt;&lt;P&gt;1) curl -s "&lt;A href="https://api.ebay.com/sell/inventory/v1/inventory_item/00000569201" target="_blank"&gt;https://api.ebay.com/sell/inventory/v1/inventory_item/00000569201&lt;/A&gt;" -X GET -H "Authorization: Bearer $TOKEN_VALID_2_HOURS"&lt;/P&gt;&lt;P&gt;Got response:&lt;/P&gt;&lt;P&gt;{"sku":"00000569201","locale":"en_AU","groupIds":["000005692"],"inventoryItemGroupKeys":["000005692"],"product":{"title":"Collonil Shoe Horn 15cm Metal","aspects":{"Size":["1 UNIT"]},"description":"&amp;lt;p&amp;gt;These shoe horns are made from top quality metal/plastic. For ease of use in putting on and removing footwear.&amp;lt;/p&amp;gt; &amp;lt;p&amp;gt;Depending on availability of colours, you may not receive the colour pictured.&amp;lt;/p&amp;gt; &amp;lt;p&amp;gt;&amp;amp;nbsp;&amp;lt;/p&amp;gt;","brand":"Collonil","upc":["does not apply"]},"condition":"NEW","availability":{"pickupAtLocationAvailability":[],"shipToLocationAvailability":{"quantity":8}}}&lt;/P&gt;&lt;P&gt;It means size: "1 UNIT"&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;2) If I want to change the size to be "1 U", I ran&lt;/P&gt;&lt;P&gt;curl -s "&lt;A href="https://api.ebay.com/sell/inventory/v1/bulk_create_or_replace_inventory_item" target="_blank"&gt;https://api.ebay.com/sell/inventory/v1/bulk_create_or_replace_inventory_item&lt;/A&gt;" -X POST -H "Content-Type: application/json" -H "Authorization: Bearer $TOKEN_VALID_2_HOURS" -d '{"requests":[{"availability":{"pickupAtLocationAvailability":[],"shipToLocationAvailability":{"quantity":8}},"condition":"NEW","product":{"aspects":{"Size":["1 U"]},"brand":"Collonil","description":"&amp;lt;p&amp;gt;These shoe horns are made from top quality metal/plastic. For ease of use in putting on and removing footwear.&amp;lt;/p&amp;gt; &amp;lt;p&amp;gt;Depending on availability of colours, you may not receive the colour pictured.&amp;lt;/p&amp;gt; &amp;lt;p&amp;gt;&amp;amp;nbsp;&amp;lt;/p&amp;gt;","title":"Collonil Shoe Horn 15cm Metal","upc":["does not apply"]},"sku":"00000569201","locale":"en_AU"}]}'&lt;/P&gt;&lt;P&gt;Got response:&lt;BR /&gt;{"errors": [{&lt;BR /&gt;"errorId": 2003,&lt;BR /&gt;"domain": "ACCESS",&lt;BR /&gt;"category": "APPLICATION",&lt;BR /&gt;"message": "Internal error",&lt;BR /&gt;"longMessage": "There was a problem with an eBay internal system or process. Contact eBay developer support for assistance",&lt;BR /&gt;"parameters": [{&lt;BR /&gt;"name": "reason",&lt;BR /&gt;"value": "Failed to transform underlying error response, see logs."&lt;BR /&gt;}]&lt;BR /&gt;}]}&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;3) Check details:&lt;/P&gt;&lt;P&gt;curl -s "&lt;A href="https://api.ebay.com/sell/inventory/v1/inventory_item/00000569201" target="_blank"&gt;https://api.ebay.com/sell/inventory/v1/inventory_item/00000569201&lt;/A&gt;" -X GET -H "Authorization: Bearer $TOKEN_VALID_2_HOURS"&lt;/P&gt;&lt;P&gt;Got response:&lt;/P&gt;&lt;P&gt;{"sku":"00000569201","locale":"en_AU","groupIds":["000005692"],"inventoryItemGroupKeys":["000005692"],"product":{"title":"Collonil Shoe Horn 15cm Metal","aspects":{"Size":["1 U"]},"description":"&amp;lt;p&amp;gt;These shoe horns are made from top quality metal/plastic. For ease of use in putting on and removing footwear.&amp;lt;/p&amp;gt; &amp;lt;p&amp;gt;Depending on availability of colours, you may not receive the colour pictured.&amp;lt;/p&amp;gt; &amp;lt;p&amp;gt;&amp;amp;nbsp;&amp;lt;/p&amp;gt;","brand":"Collonil","upc":["does not apply"]},"condition":"NEW","availability":{"pickupAtLocationAvailability":[],"shipToLocationAvailability":{"quantity":8}}}&lt;/P&gt;&lt;P&gt;It means Size got changed to "1 U" internally - even with error in previous API call.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;4) Check the ebay seller central console - search the item using SKU.&lt;BR /&gt;The Size in ebay (GUI and webpage link are still the old desc: "1 UNIT".&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Question:&lt;BR /&gt;i) Does that mean the API call (bulk_create_or_replace_inventory_item) does change the {aspects -&amp;gt; Size} internally, but not updated in GUI/ebay web site?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ii) If using API call: bulk_create_or_replace_inventory_item and response is error, does that mean it still worked internally or should we try the same API call again?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 17 Jun 2019 23:43:20 GMT</pubDate>
      <guid>https://community.ebay.com.au/t5/Selling/How-To-Change-The-Existing-Items-Size-Description-In-EBay/m-p/2244680#M186343</guid>
      <dc:creator>thewalkingco</dc:creator>
      <dc:date>2019-06-17T23:43:20Z</dc:date>
    </item>
  </channel>
</rss>

