Delphi ActiveX
Delphi ActiveX
GeoOp - Find Account ID by Name
See more GeoOp Examples
Finds an account ID by name.Chilkat Delphi ActiveX Downloads
uses
Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,
Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls, Chilkat_TLB;
...
procedure TForm1.Button1Click(Sender: TObject);
var
success: Integer;
jsonToken: TChilkatJsonObject;
oauth2: TChilkatOAuth2;
rest: TChilkatRest;
bAutoReconnect: Integer;
responseBody: WideString;
json: TChilkatJsonObject;
caseSensitive: Integer;
accountId: WideString;
begin
success := 0;
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
// This example also assumes an OAuth2 access token was previously fetched.
// and saved in a JSON file.
// First get our previously obtained access token.
// {"access_token":"e6dqdG....mzjpT04w==","token_type":"Bearer","expires_in":2592000,"owner_id":999236}
jsonToken := TChilkatJsonObject.Create(Self);
success := jsonToken.LoadFile('qa_data/tokens/geoop.json');
// This example assumes we previously obtained an access token
oauth2 := TChilkatOAuth2.Create(Self);
oauth2.AccessToken := jsonToken.StringOf('access_token');
rest := TChilkatRest.Create(Self);
// Connect to GeoOp and send the following GET request:
// GET /users HTTP/1.1
// Host: api.geoop.com
bAutoReconnect := 1;
success := rest.Connect('api.geoop.com',443,1,bAutoReconnect);
if (success <> 1) then
begin
Memo1.Lines.Add(rest.LastErrorText);
Exit;
end;
// Provide the authentication credentials (i.e. the access token)
rest.SetAuthOAuth2(oauth2.ControlInterface);
// Set the X-Version header.
rest.AddHeader('X-Version','1.0');
responseBody := rest.FullRequestNoBody('GET','/accounts');
if (rest.LastMethodSuccess <> 1) then
begin
Memo1.Lines.Add(rest.LastErrorText);
Exit;
end;
// If the response status code did not indicate success, then see what happened..
if (rest.ResponseStatusCode <> 200) then
begin
Memo1.Lines.Add('Request Header: ');
Memo1.Lines.Add(rest.LastRequestHeader);
Memo1.Lines.Add('----');
Memo1.Lines.Add('Response StatusCode = ' + IntToStr(rest.ResponseStatusCode));
Memo1.Lines.Add('Response StatusLine: ' + rest.ResponseStatusText);
Memo1.Lines.Add('Response Header:');
Memo1.Lines.Add(rest.ResponseHeader);
Memo1.Lines.Add(responseBody);
Exit;
end;
json := TChilkatJsonObject.Create(Self);
json.EmitCompact := 0;
json.Load(responseBody);
// Show the full JSON response. (see the sample response at the bottom of this example)
Memo1.Lines.Add(json.Emit());
// To find the account id for a given company name:
caseSensitive := 0;
accountId := json.FindRecordString('accounts','companyName','Chilkat Software, Inc.',caseSensitive,'id');
if (json.LastMethodSuccess <> 1) then
begin
Memo1.Lines.Add('Account not found.');
end
else
begin
Memo1.Lines.Add('The account ID is: ' + accountId);
end;
// Find the account ID for the 1st company matching "Chilkat*"
accountId := json.FindRecordString('accounts','companyName','Chilkat*',caseSensitive,'id');
if (json.LastMethodSuccess <> 1) then
begin
Memo1.Lines.Add('Account not found.');
end
else
begin
Memo1.Lines.Add('The account ID is: ' + accountId);
end;
// The full JSON response for GET /accounts looks like this:
// {
// "result": "success",
// "accounts": [
// {
// "id": 39409,
// "companyName": "Chilkat Software, Inc.",
// "licenses": 999,
// "countryCode": 1
// }
// ],
// "metadata": {
// "page": 1,
// "pagesCount": 1,
// "recordsPerPage": 20,
// "recordsCount": 1
// }
// }
//
end;