Chilkat Examples

ChilkatHOMEAndroid™Classic ASPCC++C#Mono C#.NET Core C#C# UWP/WinRTDataFlexDelphi ActiveXDelphi DLLVisual FoxProJavaLianjaMFCObjective-CPerlPHP ActiveXPHP ExtensionPowerBuilderPowerShellPureBasicCkPythonChilkat2-PythonRubySQL ServerSwift 2Swift 3,4,5...TclUnicode CUnicode C++Visual Basic 6.0VB.NETVB.NET UWP/WinRTVBScriptXojo PluginNode.jsExcelGo

VB.NET UWP/WinRT Web API Examples

Primary Categories

ABN AMRO
AWS Secrets Manager
AWS Translate
Activix CRM
Adyen
Alibaba Cloud OSS
Amazon Cognito
Amazon DynamoDB
Amazon MWS
Amazon Pay
Amazon Rekognition
Amazon Voice ID
Aruba Fatturazione
Azure Maps
Azure Monitor
Azure OAuth2
Azure Storage Accounts
Backblaze S3
Bitfinex v2 REST
Bluzone
BrickLink
CallRail
CardConnect
Cerved
ClickBank
Clickatell
Cloudfare
Constant Contact
DocuSign
Duo Auth MFA
ETrade
Ecwid
Egypt ITIDA
Etsy
Facebook
Faire
Frame.io
GeoOp
GetHarvest
Global Payments
Google People
Google Search Console
Hungary NAV Invoicing
IBM Text to Speech
Ibanity
IntakeQ
Jira
Lightspeed
MYOB
Magento
Mailgun
Mastercard

MedTunnel
MercadoLibre
Microsoft Calendar
Microsoft Group
Microsoft Tasks and Plans
Microsoft Teams
Moody's
Okta OAuth/OIDC
OneLogin OIDC
OneNote
PRODA
PayPal
Paynow.pl
Peoplevox
Populi
QuickBooks
Rabobank
Refinitiv
Royal Mail OBA
SCiS Schools Catalogue
SII Chile
SMSAPI
SOAP finkok.com
SendGrid
Shippo
Shopify
Shopware
Shopware 6
SimpleTexting
Square
Stripe
SugarCRM
TicketBAI
Trello
Twilio
Twitter
UniPin
VoiceBase
Vonage
Walmart
Walmart v3
Wasabi
WhatsApp
WiX
WooCommerce
WordPress
Xero
Yahoo Mail
Yousign
Zoom
_Miscellaneous_
eBay
effectconnect
hacienda.go.cr

 

 

 

(VB.NET UWP/WinRT) Walmart - Acknowledge Order

See Acknowledge Orders for more information about this call.

Note: This example requires Chilkat v9.5.0.68 or greater.

Acknowledges an entire order, including all of its order lines. Walmart requires a seller to acknowledge orders within four hours of receipt of the order, except in extenuating circumstances.

The response to a successful call contains the acknowledged order.

In general, only orders that are in a “Created” state should be acknowledged. As a good practice, acknowledge your orders to avoid underselling. Orders that are in an “Acknowledged” state can be re-acknowledged, possibly in response to an error response from an earlier call to acknowledge order. Orders with line items that are shipped or canceled should not be re-acknowledged.

Chilkat Universal Windows Platform (UWP) / WinRT Downloads

Chilkat for the Universal Windows Platform (UWP)

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

' Sends the following POST request:
' POST https://marketplace.walmartapis.com/v3/orders/{purchaseOrderId}/acknowledge

Dim sbUrl As New Chilkat.StringBuilder
Dim success As Boolean = sbUrl.Append("https://marketplace.walmartapis.com/v3/orders/{purchaseOrderId}/acknowledge")
Dim numReplaced As Integer = sbUrl.Replace("{purchaseOrderId}","1111691995111")

Dim requestMethod As String = "POST"

' First we need to generate a signature for our request.
' The signature needs to be re-generated for each new Walmart HTTP request.
Dim authUtil As New Chilkat.AuthUtil

Dim wmConsumerId As String = "WALMART_CONSUMER_ID"
Dim wmPrivateKey As String = "WALMART_PRIVATE_KEY"
Dim jsonStr As String = authUtil.WalmartSignature(sbUrl.GetAsString(),wmConsumerId,wmPrivateKey,requestMethod)
If (authUtil.LastMethodSuccess <> True) Then
    Debug.WriteLine(authUtil.LastErrorText)
    Exit Sub
End If


' The JSON returned by WalmartSignature contains the values to be used in the following
' header fields: WM_SEC.AUTH_SIGNATURE, WM_SEC.TIMESTAMP, and WM_QOS.CORRELATION_ID
Dim json As New Chilkat.JsonObject
json.Load(jsonStr)

Dim http As New Chilkat.Http
http.SetRequestHeader("WM_SVC.NAME","Walmart Marketplace")
http.SetRequestHeader("WM_QOS.CORRELATION_ID",json.StringOf("correlation_id"))
http.SetRequestHeader("WM_SEC.TIMESTAMP",json.StringOf("timestamp"))
http.SetRequestHeader("WM_SEC.AUTH_SIGNATURE",json.StringOf("signature"))
http.SetRequestHeader("WM_CONSUMER.ID",wmConsumerId)
' Note: Make sure to replace "WALMART_CHANNEL_TYPE" with the actual value for your seller account...
http.SetRequestHeader("WM_CONSUMER.CHANNEL.TYPE","WALMART_CHANNEL_TYPE")
http.Accept = "application/xml"

' Note: Do not explicitly set the "Host" header.  Chilkat will set it automatically.

' Walmart provides the option to send/receive JSON or XML.  This example will use JSON.
' Note: Please see the online JSON/XML code generation tools at https://tools.chilkat.io/
' The online tools generate code to create/parse XML or JSON.  (You copy sample JSON/XML into the online format,
' and generate code in your selected programming language.  It's a big time saver.)

http.SetRequestHeader("Accept","application/json")
' The body of this particular POST request contains just "{}". (The order ID is already in the URL path.)
Dim resp As Chilkat.HttpResponse = Await http.PostJson2Async(sbUrl.GetAsString(),"application/json","{}")
If (http.LastMethodSuccess <> True) Then
    Debug.WriteLine(http.LastErrorText)
    Exit Sub
End If


' Get the JSON response body, which could contain an error, or if successful contains
' the acknowledged order.
Dim sbBody As New Chilkat.StringBuilder
resp.GetBodySb(sbBody)

' A successful response should have a 200 response status
If (resp.StatusCode <> 200) Then
    Debug.WriteLine(sbBody.GetAsString())
    Debug.WriteLine("Response Status Code: " & resp.StatusCode)
    Debug.WriteLine("Failed.")

    Exit Sub
End If




' Parse the JSON response.
' A sample response is shown below this code.  (The online tools at https://tools.chilkat.io were used to generate the 
' fragment of code below using the sample response data at 
' https://developer.walmart.com/#/apicenter/marketPlace/latest?country=us#acknowledgingOrders

json.LoadSb(sbBody)
Dim orderPurchaseOrderId As String
Dim orderCustomerOrderId As String
Dim orderCustomerEmailId As String
Dim orderOrderDate As Integer
Dim orderShippingInfoPhone As String
Dim orderShippingInfoEstimatedDeliveryDate As Integer
Dim orderShippingInfoEstimatedShipDate As Integer
Dim orderShippingInfoMethodCode As String
Dim orderShippingInfoPostalAddressName As String
Dim orderShippingInfoPostalAddressAddress1 As String
Dim orderShippingInfoPostalAddressAddress2 As String
Dim orderShippingInfoPostalAddressCity As String
Dim orderShippingInfoPostalAddressState As String
Dim orderShippingInfoPostalAddressPostalCode As String
Dim orderShippingInfoPostalAddressCountry As String
Dim orderShippingInfoPostalAddressAddressType As String
Dim i As Integer
Dim count_i As Integer
Dim lineNumber As String
Dim itemProductName As String
Dim itemSku As String
Dim orderLineQuantityUnitOfMeasurement As String
Dim orderLineQuantityAmount As String
Dim statusDate As Integer
Dim refundRefundId As Boolean
Dim refundRefundComments As Boolean
Dim j As Integer
Dim count_j As Integer
Dim chargeType As String
Dim chargeName As String
Dim chargeAmountCurrency As String
Dim chargeAmountAmount As Integer
Dim taxTaxName As String
Dim taxTaxAmountCurrency As String
Dim taxTaxAmountAmount As Integer
Dim status As String
Dim statusQuantityUnitOfMeasurement As String
Dim statusQuantityAmount As String
Dim cancellationReason As Boolean
Dim trackingInfoShipDateTime As Integer
Dim trackingInfoCarrierNameOtherCarrier As Boolean
Dim trackingInfoCarrierNameCarrier As String
Dim trackingInfoMethodCode As String
Dim trackingInfoTrackingNumber As String
Dim trackingInfoTrackingURL As String
Dim refundReason As String
Dim chargeChargeType As String
Dim chargeChargeName As String
Dim chargeChargeAmountCurrency As String
Dim chargeChargeAmountAmount As Integer
Dim chargeTax As Boolean

orderPurchaseOrderId = json.StringOf("order.purchaseOrderId")
orderCustomerOrderId = json.StringOf("order.customerOrderId")
orderCustomerEmailId = json.StringOf("order.customerEmailId")
orderOrderDate = json.IntOf("order.orderDate")
orderShippingInfoPhone = json.StringOf("order.shippingInfo.phone")
orderShippingInfoEstimatedDeliveryDate = json.IntOf("order.shippingInfo.estimatedDeliveryDate")
orderShippingInfoEstimatedShipDate = json.IntOf("order.shippingInfo.estimatedShipDate")
orderShippingInfoMethodCode = json.StringOf("order.shippingInfo.methodCode")
orderShippingInfoPostalAddressName = json.StringOf("order.shippingInfo.postalAddress.name")
orderShippingInfoPostalAddressAddress1 = json.StringOf("order.shippingInfo.postalAddress.address1")
orderShippingInfoPostalAddressAddress2 = json.StringOf("order.shippingInfo.postalAddress.address2")
orderShippingInfoPostalAddressCity = json.StringOf("order.shippingInfo.postalAddress.city")
orderShippingInfoPostalAddressState = json.StringOf("order.shippingInfo.postalAddress.state")
orderShippingInfoPostalAddressPostalCode = json.StringOf("order.shippingInfo.postalAddress.postalCode")
orderShippingInfoPostalAddressCountry = json.StringOf("order.shippingInfo.postalAddress.country")
orderShippingInfoPostalAddressAddressType = json.StringOf("order.shippingInfo.postalAddress.addressType")
i = 0
count_i = json.SizeOfArray("order.orderLines.orderLine")
While i < count_i
    json.I = i
    lineNumber = json.StringOf("order.orderLines.orderLine[i].lineNumber")
    itemProductName = json.StringOf("order.orderLines.orderLine[i].item.productName")
    itemSku = json.StringOf("order.orderLines.orderLine[i].item.sku")
    orderLineQuantityUnitOfMeasurement = json.StringOf("order.orderLines.orderLine[i].orderLineQuantity.unitOfMeasurement")
    orderLineQuantityAmount = json.StringOf("order.orderLines.orderLine[i].orderLineQuantity.amount")
    statusDate = json.IntOf("order.orderLines.orderLine[i].statusDate")
    refundRefundId = json.IsNullOf("order.orderLines.orderLine[i].refund.refundId")
    refundRefundComments = json.IsNullOf("order.orderLines.orderLine[i].refund.refundComments")
    j = 0
    count_j = json.SizeOfArray("order.orderLines.orderLine[i].charges.charge")
    While j < count_j
        json.J = j
        chargeType = json.StringOf("order.orderLines.orderLine[i].charges.charge[j].chargeType")
        chargeName = json.StringOf("order.orderLines.orderLine[i].charges.charge[j].chargeName")
        chargeAmountCurrency = json.StringOf("order.orderLines.orderLine[i].charges.charge[j].chargeAmount.currency")
        chargeAmountAmount = json.IntOf("order.orderLines.orderLine[i].charges.charge[j].chargeAmount.amount")
        taxTaxName = json.StringOf("order.orderLines.orderLine[i].charges.charge[j].tax.taxName")
        taxTaxAmountCurrency = json.StringOf("order.orderLines.orderLine[i].charges.charge[j].tax.taxAmount.currency")
        taxTaxAmountAmount = json.IntOf("order.orderLines.orderLine[i].charges.charge[j].tax.taxAmount.amount")
        j = j + 1
    End While
    j = 0
    count_j = json.SizeOfArray("order.orderLines.orderLine[i].orderLineStatuses.orderLineStatus")
    While j < count_j
        json.J = j
        status = json.StringOf("order.orderLines.orderLine[i].orderLineStatuses.orderLineStatus[j].status")
        statusQuantityUnitOfMeasurement = json.StringOf("order.orderLines.orderLine[i].orderLineStatuses.orderLineStatus[j].statusQuantity.unitOfMeasurement")
        statusQuantityAmount = json.StringOf("order.orderLines.orderLine[i].orderLineStatuses.orderLineStatus[j].statusQuantity.amount")
        cancellationReason = json.IsNullOf("order.orderLines.orderLine[i].orderLineStatuses.orderLineStatus[j].cancellationReason")
        trackingInfoShipDateTime = json.IntOf("order.orderLines.orderLine[i].orderLineStatuses.orderLineStatus[j].trackingInfo.shipDateTime")
        trackingInfoCarrierNameOtherCarrier = json.IsNullOf("order.orderLines.orderLine[i].orderLineStatuses.orderLineStatus[j].trackingInfo.carrierName.otherCarrier")
        trackingInfoCarrierNameCarrier = json.StringOf("order.orderLines.orderLine[i].orderLineStatuses.orderLineStatus[j].trackingInfo.carrierName.carrier")
        trackingInfoMethodCode = json.StringOf("order.orderLines.orderLine[i].orderLineStatuses.orderLineStatus[j].trackingInfo.methodCode")
        trackingInfoTrackingNumber = json.StringOf("order.orderLines.orderLine[i].orderLineStatuses.orderLineStatus[j].trackingInfo.trackingNumber")
        trackingInfoTrackingURL = json.StringOf("order.orderLines.orderLine[i].orderLineStatuses.orderLineStatus[j].trackingInfo.trackingURL")
        j = j + 1
    End While
    j = 0
    count_j = json.SizeOfArray("order.orderLines.orderLine[i].refund.refundCharges.refundCharge")
    While j < count_j
        json.J = j
        refundReason = json.StringOf("order.orderLines.orderLine[i].refund.refundCharges.refundCharge[j].refundReason")
        chargeChargeType = json.StringOf("order.orderLines.orderLine[i].refund.refundCharges.refundCharge[j].charge.chargeType")
        chargeChargeName = json.StringOf("order.orderLines.orderLine[i].refund.refundCharges.refundCharge[j].charge.chargeName")
        chargeChargeAmountCurrency = json.StringOf("order.orderLines.orderLine[i].refund.refundCharges.refundCharge[j].charge.chargeAmount.currency")
        chargeChargeAmountAmount = json.IntOf("order.orderLines.orderLine[i].refund.refundCharges.refundCharge[j].charge.chargeAmount.amount")
        chargeTax = json.IsNullOf("order.orderLines.orderLine[i].refund.refundCharges.refundCharge[j].charge.tax")
        j = j + 1
    End While
    i = i + 1
End While


Debug.WriteLine("Success!")


' Sample Walmart Order Acknowledge Response:

' {
'   "order": {
'     "purchaseOrderId": "1577684050862",
'     "customerOrderId": "2861700797280",
'     "customerEmailId": "jsanthanam@walmartlabs.com",
'     "orderDate": 1484458949000,
'     "shippingInfo": {
'       "phone": "4151234567",
'       "estimatedDeliveryDate": 1485586800000,
'       "estimatedShipDate": 1484636400000,
'       "methodCode": "Value",
'       "postalAddress": {
'         "name": "Asha  Chakre",
'         "address1": "860 W California ave",
'         "address2": null,
'         "city": "Sunnyvale",
'         "state": "CA",
'         "postalCode": "94086",
'         "country": "USA",
'         "addressType": "RESIDENTIAL"
'       }
'     },
'     "orderLines": {
'       "orderLine": [
'         {
'           "lineNumber": "1",
'           "item": {
'             "productName": "Kellogg's Rice Krispies Cereal, 24 oz",
'             "sku": "MGR_07_21_00100123"
'           },
'           "charges": {
'             "charge": [
'               {
'                 "chargeType": "PRODUCT",
'                 "chargeName": "ItemPrice",
'                 "chargeAmount": {
'                   "currency": "USD",
'                   "amount": 19.99
'                 },
'                 "tax": {
'                   "taxName": "Tax1",
'                   "taxAmount": {
'                     "currency": "USD",
'                     "amount": 1.7
'                   }
'                 }
'               }
'             ]
'           },
'           "orderLineQuantity": {
'             "unitOfMeasurement": "EACH",
'             "amount": "1"
'           },
'           "statusDate": 1487888747000,
'           "orderLineStatuses": {
'             "orderLineStatus": [
'               {
'                 "status": "Shipped",
'                 "statusQuantity": {
'                   "unitOfMeasurement": "EACH",
'                   "amount": "1"
'                 },
'                 "cancellationReason": null,
'                 "trackingInfo": {
'                   "shipDateTime": 1485549015000,
'                   "carrierName": {
'                     "otherCarrier": null,
'                     "carrier": "FedEx"
'                   },
'                   "methodCode": "Value",
'                   "trackingNumber": "3445435443441221",
'                   "trackingURL": "http://walmart.narvar.com/walmart/tracking/Fedex?&type=MP&seller_id=801&promise_date=01/28/2017&dzip=94086&tracking_numbers=3445435443441221"
'                 }
'               }
'             ]
'           },
'           "refund": {
'             "refundId": null,
'             "refundComments": null,
'             "refundCharges": {
'               "refundCharge": [
'                 {
'                   "refundReason": "ItemNotReceivedByCustomer",
'                   "charge": {
'                     "chargeType": "PRODUCT",
'                     "chargeName": "Lost in Transit",
'                     "chargeAmount": {
'                       "currency": "USD",
'                       "amount": -0.01
'                     },
'                     "tax": null
'                   }
'                 }
'               ]
'             }
'           }
'         }
'       ]
'     }
'   }
' }

 

© 2000-2022 Chilkat Software, Inc. All Rights Reserved.