Sample code for 30+ languages & platforms
PowerBuilder

eBay -- Create or Replace Inventory Item

See more eBay Examples

This example shows how to create a new inventory item record or update an existing inventory item record.

See Create or Replace Inventory Item for more REST API details.

Chilkat PowerBuilder Downloads

PowerBuilder
integer li_rc
integer li_Success
oleobject loo_Json
string ls_AccessToken
oleobject loo_Http
string ls_Url
oleobject loo_SbAuth
oleobject loo_Resp

li_Success = 0

// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.

// This example sends the following sample PUT request to create (or replace) a new inventory item.

// PUT https://api.ebay.com/sell/inventory/v1/inventory_item/GP-Cam-01
// { 
// "availability":
//     { 
//     "shipToLocationAvailability":
//         { 
//         "quantity": 50
//         }
//     },
// "condition": "NEW",
// "product":
//     { 
//     "title": "GoPro Hero4 Helmet Cam",
//     "description": "New GoPro Hero4 Helmet Cam. Unopened box.",
//     "aspects": {
//         "Brand" :["GoPro"],
//         "Type" : ["Helmet/Action"],
//         "Storage Type" : ["Removable"],
//         "Recording Definition" : ["High Definition"],
//         "Media Format" : ["Flash Drive (SSD)"],
//         "Optical Zoom" : ["10x"]
//       },
//     "imageUrls": [
//         "http://i.ebayimg.com/images/i/182196556219-0-1/s-l1000.jpg",
//         "http://i.ebayimg.com/images/i/182196556219-0-1/s-l1001.jpg",
//         "http://i.ebayimg.com/images/i/182196556219-0-1/s-l1002.jpg"
//       ]
//     }
// }

// First, generate the JSON using this code:
loo_Json = create oleobject
li_rc = loo_Json.ConnectToNewObject("Chilkat.JsonObject")
if li_rc < 0 then
    destroy loo_Json
    MessageBox("Error","Connecting to COM object failed")
    return
end if
loo_Json.EmitCompact = 0

loo_Json.UpdateNumber("availability.shipToLocationAvailability.quantity","50")
loo_Json.UpdateString("condition","NEW")
loo_Json.UpdateString("product.title","GoPro Hero4 Helmet Cam")
loo_Json.UpdateString("product.description","New GoPro Hero4 Helmet Cam. Unopened box.")
loo_Json.UpdateString("product.aspects.Brand[0]","GoPro")
loo_Json.UpdateString("product.aspects.Type[0]","Helmet/Action")
loo_Json.UpdateString("product.aspects.~"Storage Type~"[0]","Removable")
loo_Json.UpdateString("product.aspects.~"Recording Definition~"[0]","High Definition")
loo_Json.UpdateString("product.aspects.~"Media Format~"[0]","Flash Drive (SSD)")
loo_Json.UpdateString("product.aspects.~"Optical Zoom~"[0]","10x")
loo_Json.UpdateString("product.imageUrls[0]","http://i.ebayimg.com/images/i/182196556219-0-1/s-l1000.jpg")
loo_Json.UpdateString("product.imageUrls[1]","http://i.ebayimg.com/images/i/182196556219-0-1/s-l1001.jpg")
loo_Json.UpdateString("product.imageUrls[2]","http://i.ebayimg.com/images/i/182196556219-0-1/s-l1002.jpg")

// Show the JSON to be sent:
Write-Debug loo_Json.Emit()

// Use a previously obtained user token.  The token should look something like this:
// "v^1.1#i^1#r^0#p^3#I^3#f^0#t^H4sIAAAAAAAAAOVXa2wUVRTu9k ... 89xuCWYREAAA=="
ls_AccessToken = "EBAY_ACCESS_TOKEN"

loo_Http = create oleobject
li_rc = loo_Http.ConnectToNewObject("Chilkat.Http")

// This example uses the sandbox.  
// Change "api.sandbox.ebay.com" to "api.ebay.com" to use the production system.
// Note: The last part of the url is the SKU.  In this URL, the SKU is "GP-Cam-01".
ls_Url = "https://api.sandbox.ebay.com/sell/inventory/v1/inventory_item/GP-Cam-01"
loo_Json.EmitCompact = 1

// Set your Content-Language to whatever is desired.
loo_Http.SetRequestHeader("Content-Language","en-US")

// Add our access token to the request, which is a header
// having the following format:
// Authorization: Bearer <userAccessToken>
loo_SbAuth = create oleobject
li_rc = loo_SbAuth.ConnectToNewObject("Chilkat.StringBuilder")

loo_SbAuth.Append("Bearer ")
loo_SbAuth.Append(ls_AccessToken)
loo_Http.SetRequestHeader("Authorization",loo_SbAuth.GetAsString())

loo_Http.Accept = "application/json"
loo_Http.AllowGzip = 0

loo_Resp = create oleobject
li_rc = loo_Resp.ConnectToNewObject("Chilkat.HttpResponse")

li_Success = loo_Http.HttpStr("PUT",ls_Url,loo_Json.Emit(),"utf-8","application/json",loo_Resp)
if li_Success = 0 then
    Write-Debug loo_Http.LastErrorText
    destroy loo_Json
    destroy loo_Http
    destroy loo_SbAuth
    destroy loo_Resp
    return
end if

Write-Debug "Response status code = " + string(loo_Resp.StatusCode)

if loo_Http.LastStatus <> 204 then
    Write-Debug loo_Resp.BodyStr
    Write-Debug "Failed"
    destroy loo_Json
    destroy loo_Http
    destroy loo_SbAuth
    destroy loo_Resp
    return
end if

// On success (status code = 204), there is no output payload (strResponse will be empty).
Write-Debug "Inventory item successfully created."


destroy loo_Json
destroy loo_Http
destroy loo_SbAuth
destroy loo_Resp