Hello, we are working on an application to create Neto listings via the API, and we are looking for clarification on;
- Is there a way to update the SKU for a product? We were not able to determine whether the
UpdateItem actually allows the SKU to be updated (we have yet to actually test the operation, just wanting to check before we send the API request) - the SKU field itself is optional, but how does the API pass through what product is to be updated? If we were to send the InventoryId from GetItem would this identify and update the appropriate SKU? Is there another operation which provides a way to update the SKU if we have a Product or Inventory Id?
If updating the SKU is not possible, is there a way to not include the SKU in the AddItem request so the backend does the SKU generation (we note this is how the web portal does it, as we can create a product without a SKU and it gets one assigned).
This is necessary as;
- We either want to update the product so the SKU is the
ProducId (first scenario, which is why we need to call UpdateItem as we don't know the ProductId yet) - Or not pass a SKU so the system generates it (incremented last SKU)
Thank you