Chilkat Examples

ChilkatHOME.NET Core C#Android™AutoItCC#C++Chilkat2-PythonCkPythonClassic ASPDataFlexDelphi ActiveXDelphi DLLGoJavaLianjaMono C#Node.jsObjective-CPHP ActiveXPHP ExtensionPerlPowerBuilderPowerShellPureBasicRubySQL ServerSwift 2Swift 3,4,5...TclUnicode CUnicode C++VB.NETVBScriptVisual Basic 6.0Visual FoxProXojo Plugin

Delphi ActiveX Web API Examples

Primary Categories

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

MedTunnel
MercadoLibre
MessageMedia
Microsoft Calendar
Microsoft Group
Microsoft Tasks and Plans
Microsoft Teams
Moody's
Okta OAuth/OIDC
OneLogin OIDC
OneNote
OpenAI ChatGPT
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 API v2
Twitter v1
UPS
UniPin
VoiceBase
Vonage
WaTrend
Walmart v3
Wasabi
WhatsApp
WiX
WooCommerce
WordPress
Xero
Yahoo Mail
Yapily
Yousign
ZATCA
Zendesk
Zoom
_Miscellaneous_
eBay
effectconnect
hacienda.go.cr

 

 

 

(Delphi ActiveX) Walmart - Update bulk inventory

See Update bulk inventory for more information about this call.

Chilkat for Delphi Downloads

Chilkat ActiveX DLL for Delphi

Chilkat non-ActiveX DLL for Delphi

* The examples here use the ActiveX DLL.

uses
    Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,
    Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls, Chilkat_v9_5_0_TLB;

...

procedure TForm1.Button1Click(Sender: TObject);
var
success: Integer;
url: WideString;
requestMethod: WideString;
authUtil: TChilkatAuthUtil;
wmConsumerId: WideString;
wmPrivateKey: WideString;
jsonStr: WideString;
req: TChilkatHttpRequest;
json: TChilkatJsonObject;
http: TChilkatHttp;
resp: IChilkatHttpResponse;
xml: TChilkatXml;

begin
// 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/v2/feeds?feedType=inventory

url := 'https://marketplace.walmartapis.com/v2/feeds?feedType=inventory';

requestMethod := 'POST';

// First we need to generate a signature for our request.
// The signature needs to be re-generated for each new Walmart HTTP request.
authUtil := TChilkatAuthUtil.Create(Self);

wmConsumerId := 'WALMART_CONSUMER_ID';
wmPrivateKey := 'WALMART_PRIVATE_KEY';
jsonStr := authUtil.WalmartSignature(url,wmConsumerId,wmPrivateKey,requestMethod);
if (authUtil.LastMethodSuccess <> 1) then
  begin
    Memo1.Lines.Add(authUtil.LastErrorText);
    Exit;
  end;

// Build the HTTP POST request.
req := TChilkatHttpRequest.Create(Self);
req.HttpVerb := 'POST';
req.ContentType := 'multipart/form-data';
req.Path := '/v2/feeds?feedType=inventory';
req.AddHeader('Accept','application/xml');

// 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
json := TChilkatJsonObject.Create(Self);
json.Load(jsonStr);

req.AddHeader('WM_SVC.NAME','Walmart Marketplace');
req.AddHeader('WM_QOS.CORRELATION_ID',json.StringOf('correlation_id'));
req.AddHeader('WM_SEC.TIMESTAMP',json.StringOf('timestamp'));
req.AddHeader('WM_SEC.AUTH_SIGNATURE',json.StringOf('signature'));
req.AddHeader('WM_CONSUMER.ID',wmConsumerId);
//  Note: Make sure to replace "WALMART_CHANNEL_TYPE" with the actual value for your seller account...
req.AddHeader('WM_CONSUMER.CHANNEL.TYPE','WALMART_CHANNEL_TYPE');

// The body of the POST will contain XML.  In this example, we'll load the XML
// from a file.  The XML contains inventory data that looks something like this:

// <InventoryFeed xmlns="http://walmart.com/">
//   <InventoryHeader>
//       <version>1.4</version>
//   </InventoryHeader>
//   <inventory>
//       <sku>1068155</sku>
//       <quantity>
//           <unit>EACH</unit>
//           <amount>10</amount>
//       </quantity>
//       <fulfillmentLagTime>1</fulfillmentLagTime>
//   </inventory>
//   <inventory>
//       <sku>10210321</sku>
//       <quantity>
//           <unit>EACH</unit>
//           <amount>20</amount>
//       </quantity>
//       <fulfillmentLagTime>3</fulfillmentLagTime>
//   </inventory>
// </InventoryFeed>

success := req.AddFileForUpload2('inventory','qa_data/walmart/inventory.xml','application/xml');
if (success <> 1) then
  begin
    Memo1.Lines.Add(req.LastErrorText);
    Exit;
  end;

http := TChilkatHttp.Create(Self);
resp := http.SynchronousRequest('marketplace.walmartapis.com',443,1,req.ControlInterface);
if (http.LastMethodSuccess <> 1) then
  begin
    Memo1.Lines.Add(http.LastErrorText);
    Exit;
  end;

xml := TChilkatXml.Create(Self);
xml.LoadXml(resp.BodyStr);

// A successful response should have a 200 response status
if (resp.StatusCode <> 200) then
  begin
    Memo1.Lines.Add(xml.GetXml());
    Memo1.Lines.Add('Response Status Code: ' + IntToStr(resp.StatusCode));
    Memo1.Lines.Add('Failed.');

    Exit;
  end;

// Show the XML response..
Memo1.Lines.Add(xml.GetXml());
Memo1.Lines.Add('--');
Memo1.Lines.Add('Success!');
end;

 

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