delphiAx / Shopify / Get all customers with an address in the Brazil
Back to Collection Items
var
http: TChilkatHttp;
success: Integer;
queryParams: TChilkatJsonObject;
resp: IChilkatHttpResponse;
begin
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
http := TChilkatHttp.Create(Self);
queryParams := TChilkatJsonObject.Create(Self);
queryParams.UpdateString('query','<post>');
http.SetRequestHeader('Content','<>');
resp := http.QuickRequestParams('GET','httpsDefaultParameterValue:DefaultParameterValue@DefaultParameterValue.myshopify.com/admin/customers/search.json',queryParams.ControlInterface);
if (http.LastMethodSuccess = 0) then
begin
Memo1.Lines.Add(http.LastErrorText);
Exit;
end;
Memo1.Lines.Add(IntToStr(resp.StatusCode));
Memo1.Lines.Add(resp.BodyStr);
Curl Command
curl -G -d "query=%3Cpost%3E"
-H "Content: <>"
httpsDefaultParameterValue:DefaultParameterValue@DefaultParameterValue.myshopify.com/admin/customers/search.json
Postman Collection Item JSON
{
"name": "Get all customers with an address in the Brazil",
"request": {
"method": "GET",
"header": [
{
"key": "Content",
"value": "<>"
}
],
"url": {
"raw": "{{baseUrl}}/admin/customers/search.json?query=<post>",
"host": [
"{{baseUrl}}"
],
"path": [
"admin",
"customers",
"search.json"
],
"query": [
{
"key": "query",
"value": "<post>"
}
]
},
"description": "Get all customers with an address in the brazil."
},
"response": [
]
}