Delphi DLL
Delphi DLL
Shopify Delete Product
See more Shopify Examples
Delete a product from the shop.Chilkat Delphi DLL Downloads
uses
Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,
Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls, Rest, StringBuilder;
...
procedure TForm1.Button1Click(Sender: TObject);
var
success: Boolean;
rest: HCkRest;
sbResponse: HCkStringBuilder;
begin
success := False;
rest := CkRest_Create();
CkRest_SetAuthBasic(rest,'SHOPIFY_PRIVATE_API_KEY','SHOPIFY_PRIVATE_API_SECRET_KEY');
success := CkRest_Connect(rest,'chilkat.myshopify.com',443,True,True);
if (success <> True) then
begin
Memo1.Lines.Add(CkRest__lastErrorText(rest));
Exit;
end;
sbResponse := CkStringBuilder_Create();
success := CkRest_FullRequestNoBodySb(rest,'DELETE','/admin/products/#{id}.json',sbResponse);
if (success <> True) then
begin
Memo1.Lines.Add(CkRest__lastErrorText(rest));
Exit;
end;
if (CkRest_getResponseStatusCode(rest) <> 200) then
begin
Memo1.Lines.Add('Received error response code: ' + IntToStr(CkRest_getResponseStatusCode(rest)));
Memo1.Lines.Add('Response body:');
Memo1.Lines.Add(CkStringBuilder__getAsString(sbResponse));
Exit;
end;
Memo1.Lines.Add('Example Completed.');
CkRest_Dispose(rest);
CkStringBuilder_Dispose(sbResponse);
end;