PureBasic
PureBasic
Walmart V3 API - Get All Released Orders
See more Walmart v3 Examples
Retrieves all the orders with line items that are in the "created" status, that is, these orders have been released from the Walmart Order Management System to the seller for processing. The released orders are the orders that are ready for a seller to fulfill.Chilkat PureBasic Downloads
IncludeFile "CkHttpResponse.pb"
IncludeFile "CkHttp.pb"
IncludeFile "CkJsonObject.pb"
Procedure ChilkatExample()
success.i = 0
; This example requires the Chilkat API to have been previously unlocked.
; See Global Unlock Sample for sample code.
http.i = CkHttp::ckCreate()
If http.i = 0
Debug "Failed to create object."
ProcedureReturn
EndIf
CkHttp::setCkAccept(http, "application/json")
; Setting the Login and Password properties to the clientId and clientSecret
; will cause the Basic Auth header to be added (i.e. BaseEncode64(clientId:clientSecret))
CkHttp::setCkLogin(http, "clientId")
CkHttp::setCkPassword(http, "clientSecret")
CkHttp::setCkBasicAuth(http, 1)
CkHttp::ckSetRequestHeader(http,"Content-Type","application/json")
CkHttp::ckSetRequestHeader(http,"WM_QOS.CORRELATION_ID","b3261d2d-028a-4ef7-8602-633c23200af6")
; Use the access token obtained from this example: Walmart v3 API Get OAuth2 Access Token using Client Credentials
CkHttp::ckSetRequestHeader(http,"WM_SEC.ACCESS_TOKEN","eyJraWQiOiIzZjVhYTFmNS1hYWE5LTQzM.....")
CkHttp::ckSetRequestHeader(http,"WM_SVC.NAME","Walmart Marketplace")
CkHttp::ckSetUrlVar(http,"createdStartDate","2020-01-16T10:30:15Z")
CkHttp::ckSetUrlVar(http,"limit","200")
; Can also be 3PLFulfilled
CkHttp::ckSetUrlVar(http,"shippingProgramType","SellerFulfilled")
CkHttp::ckSetUrlVar(http,"shipNodeType","TWO_DAY")
resp.i = CkHttpResponse::ckCreate()
If resp.i = 0
Debug "Failed to create object."
ProcedureReturn
EndIf
success = CkHttp::ckHttpNoBody(http,"GET","/v3/orders/released?createdStartDate={$createdStartDate}&limit={$limit}&shippingProgramType={$shippingProgramType}&shipNodeType={$shipNodeType}",resp)
If success = 0
Debug CkHttp::ckLastErrorText(http)
CkHttp::ckDispose(http)
CkHttpResponse::ckDispose(resp)
ProcedureReturn
EndIf
Debug "Response Status Code: " + Str(CkHttpResponse::ckStatusCode(resp))
jsonResponse.i = CkJsonObject::ckCreate()
If jsonResponse.i = 0
Debug "Failed to create object."
ProcedureReturn
EndIf
CkJsonObject::ckLoad(jsonResponse,CkHttpResponse::ckBodyStr(resp))
CkJsonObject::setCkEmitCompact(jsonResponse, 0)
Debug CkJsonObject::ckEmit(jsonResponse)
If CkHttpResponse::ckStatusCode(resp) <> 200
Debug "Failed."
CkHttp::ckDispose(http)
CkHttpResponse::ckDispose(resp)
CkJsonObject::ckDispose(jsonResponse)
ProcedureReturn
EndIf
; Sample output...
; (See the parsing code below..)
;
; Use the this online tool to generate parsing code from sample JSON:
; Generate Parsing Code from JSON
; {
; "list": {
; "meta": {
; "totalCount": 25228,
; "limit": 10,
; "nextCursor": "?limit=10&hasMoreElements=true&soIndex=25228&poIndex=10&sellerId=152&createdStartDate=2019-04-02T00:00:00.000Z&createdEndDate=2019-09-26T16:05:49.648Z"
; },
; "elements": {
; "order": [
; {
; "purchaseOrderId": "4792701510371",
; "customerOrderId": "5401973367419",
; "customerEmailId": "47B81ACD2C62434DBE64F47B9E1F7630@relay.walmart.com",
; "orderDate": 1569513584000,
; "shippingInfo": {
; "phone": "2134488377",
; "estimatedDeliveryDate": 1569870000000,
; "estimatedShipDate": 1569553200000,
; "methodCode": "Express",
; "postalAddress": {
; "name": "Julio Hernandez",
; "address1": "9713 pleasant view dr",
; "address2": null,
; "city": "Rancho Cucamonga",
; "state": "CA",
; "postalCode": "91701",
; "country": "USA",
; "addressType": "RESIDENTIAL"
; }
; },
; "orderLines": {
; "orderLine": [
; {
; "lineNumber": "1",
; "item": {
; "productName": "Refurbished Lenovo YB1-X90F Grey Yoga Book with WiFi 10.1\" Touchscreen Tablet Android 6.0.1",
; "sku": "VO190403007727R"
; },
; "charges": {
; "charge": [
; {
; "chargeType": "PRODUCT",
; "chargeName": "ItemPrice",
; "chargeAmount": {
; "currency": "USD",
; "amount": 259
; },
; "tax": {
; "taxName": "Tax1",
; "taxAmount": {
; "currency": "USD",
; "amount": 20.07
; }
; }
; },
; {
; "chargeType": "FEE",
; "chargeName": "Fee",
; "chargeAmount": {
; "currency": "USD",
; "amount": 0
; },
; "tax": {
; "taxName": "Electronic Waste Recycling Fee",
; "taxAmount": {
; "currency": "USD",
; "amount": 5
; }
; }
; }
; ]
; },
; "orderLineQuantity": {
; "unitOfMeasurement": "EACH",
; "amount": "1"
; },
; "statusDate": 1569513724000,
; "orderLineStatuses": {
; "orderLineStatus": [
; {
; "status": "Acknowledged",
; "statusQuantity": {
; "unitOfMeasurement": "EACH",
; "amount": "1"
; },
; "cancellationReason": null,
; "trackingInfo": null,
; "returnCenterAddress": null
; }
; ]
; },
; "refund": null,
; "fulfillment": {
; "fulfillmentOption": "S2H",
; "shipMethod": "EXPEDITED",
; "storeId": null,
; "pickUpDateTime": 1569870000000,
; "pickUpBy": null,
; "shippingProgramType": "TWO_DAY"
; }
; }
; ]
; },
; "shipNode": {
; "type": "3PLFulfilled"
; }
; }
; ]
; }
; }
; }
;
purchaseOrderId.s
customerOrderId.s
customerEmailId.s
orderDate.i
shippingInfoPhone.s
shippingInfoEstimatedDeliveryDate.i
shippingInfoEstimatedShipDate.i
shippingInfoMethodCode.s
shippingInfoPostalAddressName.s
shippingInfoPostalAddressAddress1.s
shippingInfoPostalAddressAddress2.s
shippingInfoPostalAddressCity.s
shippingInfoPostalAddressState.s
shippingInfoPostalAddressPostalCode.s
shippingInfoPostalAddressCountry.s
shippingInfoPostalAddressAddressType.s
shipNodeType.s
j.i
count_j.i
lineNumber.s
itemProductName.s
itemSku.s
orderLineQuantityUnitOfMeasurement.s
orderLineQuantityAmount.s
statusDate.i
refund.s
fulfillmentFulfillmentOption.s
fulfillmentShipMethod.s
fulfillmentStoreId.s
fulfillmentPickUpDateTime.i
fulfillmentPickUpBy.s
fulfillmentShippingProgramType.s
k.i
count_k.i
chargeType.s
chargeName.s
chargeAmountCurrency.s
chargeAmountAmount.i
taxTaxName.s
taxTaxAmountCurrency.s
taxTaxAmountAmount.s
status.s
statusQuantityUnitOfMeasurement.s
statusQuantityAmount.s
cancellationReason.s
trackingInfo.s
returnCenterAddress.s
listMetaTotalCount.i = CkJsonObject::ckIntOf(jsonResponse,"list.meta.totalCount")
listMetaLimit.i = CkJsonObject::ckIntOf(jsonResponse,"list.meta.limit")
listMetaNextCursor.s = CkJsonObject::ckStringOf(jsonResponse,"list.meta.nextCursor")
i.i = 0
count_i.i = CkJsonObject::ckSizeOfArray(jsonResponse,"list.elements.order")
While i < count_i
CkJsonObject::setCkI(jsonResponse, i)
purchaseOrderId = CkJsonObject::ckStringOf(jsonResponse,"list.elements.order[i].purchaseOrderId")
customerOrderId = CkJsonObject::ckStringOf(jsonResponse,"list.elements.order[i].customerOrderId")
customerEmailId = CkJsonObject::ckStringOf(jsonResponse,"list.elements.order[i].customerEmailId")
orderDate = CkJsonObject::ckIntOf(jsonResponse,"list.elements.order[i].orderDate")
shippingInfoPhone = CkJsonObject::ckStringOf(jsonResponse,"list.elements.order[i].shippingInfo.phone")
shippingInfoEstimatedDeliveryDate = CkJsonObject::ckIntOf(jsonResponse,"list.elements.order[i].shippingInfo.estimatedDeliveryDate")
shippingInfoEstimatedShipDate = CkJsonObject::ckIntOf(jsonResponse,"list.elements.order[i].shippingInfo.estimatedShipDate")
shippingInfoMethodCode = CkJsonObject::ckStringOf(jsonResponse,"list.elements.order[i].shippingInfo.methodCode")
shippingInfoPostalAddressName = CkJsonObject::ckStringOf(jsonResponse,"list.elements.order[i].shippingInfo.postalAddress.name")
shippingInfoPostalAddressAddress1 = CkJsonObject::ckStringOf(jsonResponse,"list.elements.order[i].shippingInfo.postalAddress.address1")
shippingInfoPostalAddressAddress2 = CkJsonObject::ckStringOf(jsonResponse,"list.elements.order[i].shippingInfo.postalAddress.address2")
shippingInfoPostalAddressCity = CkJsonObject::ckStringOf(jsonResponse,"list.elements.order[i].shippingInfo.postalAddress.city")
shippingInfoPostalAddressState = CkJsonObject::ckStringOf(jsonResponse,"list.elements.order[i].shippingInfo.postalAddress.state")
shippingInfoPostalAddressPostalCode = CkJsonObject::ckStringOf(jsonResponse,"list.elements.order[i].shippingInfo.postalAddress.postalCode")
shippingInfoPostalAddressCountry = CkJsonObject::ckStringOf(jsonResponse,"list.elements.order[i].shippingInfo.postalAddress.country")
shippingInfoPostalAddressAddressType = CkJsonObject::ckStringOf(jsonResponse,"list.elements.order[i].shippingInfo.postalAddress.addressType")
shipNodeType = CkJsonObject::ckStringOf(jsonResponse,"list.elements.order[i].shipNode.type")
j = 0
count_j = CkJsonObject::ckSizeOfArray(jsonResponse,"list.elements.order[i].orderLines.orderLine")
While j < count_j
CkJsonObject::setCkJ(jsonResponse, j)
lineNumber = CkJsonObject::ckStringOf(jsonResponse,"list.elements.order[i].orderLines.orderLine[j].lineNumber")
itemProductName = CkJsonObject::ckStringOf(jsonResponse,"list.elements.order[i].orderLines.orderLine[j].item.productName")
itemSku = CkJsonObject::ckStringOf(jsonResponse,"list.elements.order[i].orderLines.orderLine[j].item.sku")
orderLineQuantityUnitOfMeasurement = CkJsonObject::ckStringOf(jsonResponse,"list.elements.order[i].orderLines.orderLine[j].orderLineQuantity.unitOfMeasurement")
orderLineQuantityAmount = CkJsonObject::ckStringOf(jsonResponse,"list.elements.order[i].orderLines.orderLine[j].orderLineQuantity.amount")
statusDate = CkJsonObject::ckIntOf(jsonResponse,"list.elements.order[i].orderLines.orderLine[j].statusDate")
refund = CkJsonObject::ckStringOf(jsonResponse,"list.elements.order[i].orderLines.orderLine[j].refund")
fulfillmentFulfillmentOption = CkJsonObject::ckStringOf(jsonResponse,"list.elements.order[i].orderLines.orderLine[j].fulfillment.fulfillmentOption")
fulfillmentShipMethod = CkJsonObject::ckStringOf(jsonResponse,"list.elements.order[i].orderLines.orderLine[j].fulfillment.shipMethod")
fulfillmentStoreId = CkJsonObject::ckStringOf(jsonResponse,"list.elements.order[i].orderLines.orderLine[j].fulfillment.storeId")
fulfillmentPickUpDateTime = CkJsonObject::ckIntOf(jsonResponse,"list.elements.order[i].orderLines.orderLine[j].fulfillment.pickUpDateTime")
fulfillmentPickUpBy = CkJsonObject::ckStringOf(jsonResponse,"list.elements.order[i].orderLines.orderLine[j].fulfillment.pickUpBy")
fulfillmentShippingProgramType = CkJsonObject::ckStringOf(jsonResponse,"list.elements.order[i].orderLines.orderLine[j].fulfillment.shippingProgramType")
k = 0
count_k = CkJsonObject::ckSizeOfArray(jsonResponse,"list.elements.order[i].orderLines.orderLine[j].charges.charge")
While k < count_k
CkJsonObject::setCkK(jsonResponse, k)
chargeType = CkJsonObject::ckStringOf(jsonResponse,"list.elements.order[i].orderLines.orderLine[j].charges.charge[k].chargeType")
chargeName = CkJsonObject::ckStringOf(jsonResponse,"list.elements.order[i].orderLines.orderLine[j].charges.charge[k].chargeName")
chargeAmountCurrency = CkJsonObject::ckStringOf(jsonResponse,"list.elements.order[i].orderLines.orderLine[j].charges.charge[k].chargeAmount.currency")
chargeAmountAmount = CkJsonObject::ckIntOf(jsonResponse,"list.elements.order[i].orderLines.orderLine[j].charges.charge[k].chargeAmount.amount")
taxTaxName = CkJsonObject::ckStringOf(jsonResponse,"list.elements.order[i].orderLines.orderLine[j].charges.charge[k].tax.taxName")
taxTaxAmountCurrency = CkJsonObject::ckStringOf(jsonResponse,"list.elements.order[i].orderLines.orderLine[j].charges.charge[k].tax.taxAmount.currency")
taxTaxAmountAmount = CkJsonObject::ckStringOf(jsonResponse,"list.elements.order[i].orderLines.orderLine[j].charges.charge[k].tax.taxAmount.amount")
k = k + 1
Wend
k = 0
count_k = CkJsonObject::ckSizeOfArray(jsonResponse,"list.elements.order[i].orderLines.orderLine[j].orderLineStatuses.orderLineStatus")
While k < count_k
CkJsonObject::setCkK(jsonResponse, k)
status = CkJsonObject::ckStringOf(jsonResponse,"list.elements.order[i].orderLines.orderLine[j].orderLineStatuses.orderLineStatus[k].status")
statusQuantityUnitOfMeasurement = CkJsonObject::ckStringOf(jsonResponse,"list.elements.order[i].orderLines.orderLine[j].orderLineStatuses.orderLineStatus[k].statusQuantity.unitOfMeasurement")
statusQuantityAmount = CkJsonObject::ckStringOf(jsonResponse,"list.elements.order[i].orderLines.orderLine[j].orderLineStatuses.orderLineStatus[k].statusQuantity.amount")
cancellationReason = CkJsonObject::ckStringOf(jsonResponse,"list.elements.order[i].orderLines.orderLine[j].orderLineStatuses.orderLineStatus[k].cancellationReason")
trackingInfo = CkJsonObject::ckStringOf(jsonResponse,"list.elements.order[i].orderLines.orderLine[j].orderLineStatuses.orderLineStatus[k].trackingInfo")
returnCenterAddress = CkJsonObject::ckStringOf(jsonResponse,"list.elements.order[i].orderLines.orderLine[j].orderLineStatuses.orderLineStatus[k].returnCenterAddress")
k = k + 1
Wend
j = j + 1
Wend
i = i + 1
Wend
CkHttp::ckDispose(http)
CkHttpResponse::ckDispose(resp)
CkJsonObject::ckDispose(jsonResponse)
ProcedureReturn
EndProcedure