Sample code for 30+ languages & platforms
Xbase++

Shopware List Media

See more Shopware Examples

Demonstrates how to get a list of media in Shopware.

Chilkat Xbase++ Downloads

Xbase++
LOCAL nSuccess
LOCAL oHttp
LOCAL oSbResponseBody
LOCAL oJResp
LOCAL nId
LOCAL nAlbumId
LOCAL cName
LOCAL cDescription
LOCAL cPath
LOCAL cV_type
LOCAL cExtension
LOCAL nUserId
LOCAL cCreated
LOCAL nFileSize
LOCAL cWidth
LOCAL cHeight
LOCAL cAttribute
LOCAL nTotal
LOCAL i
LOCAL nCount_i

nSuccess := 0

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

oHttp := CreateObject("Chilkat.Http")

oHttp:Login := "api_username"
oHttp:Password := "api_key"
oHttp:BasicAuth := 1

oSbResponseBody := CreateObject("Chilkat.StringBuilder")
nSuccess := oHttp:QuickGetSb("https://my-shopware-shop.com/api/media?limit=10", oSbResponseBody)
IF (nSuccess == 0)
    ? oHttp:LastErrorText
    oHttp:destroy()
    oSbResponseBody:destroy()
    RETURN
ENDIF

oJResp := CreateObject("Chilkat.JsonObject")
oJResp:LoadSb(oSbResponseBody)
oJResp:EmitCompact := 0

? "Response Body:"
? oJResp:Emit()

//  Sample JSON response:
//  (Sample code for parsing the JSON response is shown below)

//  {
//    "data": [
//      {
//        "id": 6708,
//        "albumId": -9,
//        "name": "sonnenblume",
//        "description": "",
//        "path": "https:\/\/my-shopware-shop.com\/media\/pdf\/2f\/26\/52\/sonnenblume.zip",
//        "type": "ARCHIVE",
//        "extension": "zip",
//        "userId": 5,
//        "created": "2021-03-01T00:00:00+0100",
//        "fileSize": 216905,
//        "width": null,
//        "height": null,
//        "attribute": null
//      },
//      {
//        "id": 6709,
//        "albumId": -9,
//        "name": "csinventur_anleitung",
//        "description": "",
//        "path": "https:\/\/my-shopware-shop.com\/media\/pdf\/19\/21\/86\/csinventur_anleitung.pdf",
//        "type": "PDF",
//        "extension": "pdf",
//        "userId": 5,
//        "created": "2021-03-01T00:00:00+0100",
//        "fileSize": 837131,
//        "width": null,
//        "height": null,
//        "attribute": null
//      },
//      {
//        "id": 6710,
//        "albumId": -9,
//        "name": "photos_fre_carousel_elevatorpitch_620x252",
//        "description": "",
//        "path": "https:\/\/my-shopware-shop.com\/media\/pdf\/d8\/d7\/b4\/photos_fre_carousel_elevatorpitch_620x252.mp4",
//        "type": "VIDEO",
//        "extension": "mp4",
//        "userId": 5,
//        "created": "2021-03-01T00:00:00+0100",
//        "fileSize": 2499157,
//        "width": null,
//        "height": null,
//        "attribute": null
//      },
//  
//  	...
//    ],
//    "total": 31,
//    "success": true
//  }

//  Sample code for parsing the JSON response...
//  Use the following online tool to generate parsing code from sample JSON:
//  Generate Parsing Code from JSON

nTotal := oJResp:IntOf("total")
nSuccess := oJResp:BoolOf("success")
i := 0
nCount_i := oJResp:SizeOfArray("data")
DO WHILE i < nCount_i
    oJResp:I := i
    nId := oJResp:IntOf("data[i].id")
    nAlbumId := oJResp:IntOf("data[i].albumId")
    cName := oJResp:StringOf("data[i].name")
    cDescription := oJResp:StringOf("data[i].description")
    cPath := oJResp:StringOf("data[i].path")
    cV_type := oJResp:StringOf("data[i].type")
    cExtension := oJResp:StringOf("data[i].extension")
    nUserId := oJResp:IntOf("data[i].userId")
    cCreated := oJResp:StringOf("data[i].created")
    nFileSize := oJResp:IntOf("data[i].fileSize")
    cWidth := oJResp:StringOf("data[i].width")
    cHeight := oJResp:StringOf("data[i].height")
    cAttribute := oJResp:StringOf("data[i].attribute")
    i := i + 1
ENDDO

oHttp:destroy()
oSbResponseBody:destroy()
oJResp:destroy()