Chilkat Online Tools

delphiDll / easybill REST API / /logins

Back to Collection Items

var
http: HCkHttp;
success: Boolean;
queryParams: HCkJsonObject;
resp: HCkHttpResponse;
sbResponseBody: HCkStringBuilder;
jResp: HCkJsonObject;
respStatusCode: Integer;
id: PWideChar;
first_name: PWideChar;
last_name: PWideChar;
display_name: PWideChar;
phone: PWideChar;
email: PWideChar;
email_signature: PWideChar;
login_type: PWideChar;
locale: PWideChar;
time_zone: PWideChar;
Two_factor_enabled: Boolean;
Recovery_codes_enabled: Boolean;
Notify_on_new_login_enabled: Boolean;
page: PWideChar;
pages: PWideChar;
limit: PWideChar;
total: PWideChar;
i: Integer;
count_i: Integer;

begin
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.

http := CkHttp_Create();

queryParams := CkJsonObject_Create();
CkJsonObject_UpdateString(queryParams,'limit','<integer>');
CkJsonObject_UpdateString(queryParams,'page','<integer>');

CkHttp_SetRequestHeader(http,'Authorization','{{apiKey}}');
CkHttp_SetRequestHeader(http,'Accept','application/json');

resp := CkHttp_QuickRequestParams(http,'GET','https://api.easybill.de/rest/v1/logins',queryParams);
if (CkHttp_getLastMethodSuccess(http) = False) then
  begin
    Memo1.Lines.Add(CkHttp__lastErrorText(http));
    Exit;
  end;

sbResponseBody := CkStringBuilder_Create();
CkHttpResponse_GetBodySb(resp,sbResponseBody);

jResp := CkJsonObject_Create();
CkJsonObject_LoadSb(jResp,sbResponseBody);
CkJsonObject_putEmitCompact(jResp,False);

Memo1.Lines.Add('Response Body:');
Memo1.Lines.Add(CkJsonObject__emit(jResp));

respStatusCode := CkHttpResponse_getStatusCode(resp);
Memo1.Lines.Add('Response Status Code = ' + IntToStr(respStatusCode));
if (respStatusCode >= 400) then
  begin
    Memo1.Lines.Add('Response Header:');
    Memo1.Lines.Add(CkHttpResponse__header(resp));
    Memo1.Lines.Add('Failed.');
    CkHttpResponse_Dispose(resp);
    Exit;
  end;
CkHttpResponse_Dispose(resp);

// Sample JSON response:
// (Sample code for parsing the JSON response is shown below)

// {
//   "page": "<integer>",
//   "pages": "<integer>",
//   "limit": "<integer>",
//   "total": "<integer>",
//   "items": [
//     {
//       "id": "<long>",
//       "first_name": "<string>",
//       "last_name": "<string>",
//       "display_name": "<string>",
//       "phone": "<string>",
//       "email": "<string>",
//       "email_signature": "<string>",
//       "login_type": "ASSISTANT",
//       "locale": "<string>",
//       "time_zone": "<string>",
//       "security": {
//         "two_factor_enabled": false,
//         "recovery_codes_enabled": false,
//         "notify_on_new_login_enabled": true
//       }
//     },
//     {
//       "id": "<long>",
//       "first_name": "<string>",
//       "last_name": "<string>",
//       "display_name": "<string>",
//       "phone": "<string>",
//       "email": "<string>",
//       "email_signature": "<string>",
//       "login_type": "ASSISTANT",
//       "locale": "<string>",
//       "time_zone": "<string>",
//       "security": {
//         "two_factor_enabled": false,
//         "recovery_codes_enabled": false,
//         "notify_on_new_login_enabled": true
//       }
//     }
//   ]
// }

// Sample code for parsing the JSON response...
// Use this online tool to generate parsing code from sample JSON: Generate JSON Parsing Code

page := CkJsonObject__stringOf(jResp,'page');
pages := CkJsonObject__stringOf(jResp,'pages');
limit := CkJsonObject__stringOf(jResp,'limit');
total := CkJsonObject__stringOf(jResp,'total');
i := 0;
count_i := CkJsonObject_SizeOfArray(jResp,'items');
while i < count_i do
  begin
    CkJsonObject_putI(jResp,i);
    id := CkJsonObject__stringOf(jResp,'items[i].id');
    first_name := CkJsonObject__stringOf(jResp,'items[i].first_name');
    last_name := CkJsonObject__stringOf(jResp,'items[i].last_name');
    display_name := CkJsonObject__stringOf(jResp,'items[i].display_name');
    phone := CkJsonObject__stringOf(jResp,'items[i].phone');
    email := CkJsonObject__stringOf(jResp,'items[i].email');
    email_signature := CkJsonObject__stringOf(jResp,'items[i].email_signature');
    login_type := CkJsonObject__stringOf(jResp,'items[i].login_type');
    locale := CkJsonObject__stringOf(jResp,'items[i].locale');
    time_zone := CkJsonObject__stringOf(jResp,'items[i].time_zone');
    Two_factor_enabled := CkJsonObject_BoolOf(jResp,'items[i].security.two_factor_enabled');
    Recovery_codes_enabled := CkJsonObject_BoolOf(jResp,'items[i].security.recovery_codes_enabled');
    Notify_on_new_login_enabled := CkJsonObject_BoolOf(jResp,'items[i].security.notify_on_new_login_enabled');
    i := i + 1;
  end;

CkHttp_Dispose(http);
CkJsonObject_Dispose(queryParams);
CkStringBuilder_Dispose(sbResponseBody);
CkJsonObject_Dispose(jResp);

Curl Command

curl -G -d "limit=%3Cinteger%3E"
	-d "page=%3Cinteger%3E"
	-H "Authorization: {{apiKey}}"
	-H "Accept: application/json"
https://api.easybill.de/rest/v1/logins

Postman Collection Item JSON

{
  "name": "/logins",
  "request": {
    "method": "GET",
    "header": [
      {
        "key": "Accept",
        "value": "application/json"
      }
    ],
    "url": {
      "raw": "{{baseUrl}}/logins?limit=<integer>&page=<integer>",
      "host": [
        "{{baseUrl}}"
      ],
      "path": [
        "logins"
      ],
      "query": [
        {
          "key": "limit",
          "value": "<integer>",
          "description": "Limited the result. Default is 100. Maximum can be 1000."
        },
        {
          "key": "page",
          "value": "<integer>",
          "description": "Set current Page. Default is 1."
        }
      ]
    }
  },
  "response": [
    {
      "name": "Successful operation",
      "originalRequest": {
        "method": "GET",
        "header": [
          {
            "key": "Accept",
            "value": "application/json"
          },
          {
            "description": "Added as a part of security scheme: apikey",
            "key": "Authorization",
            "value": "<API Key>"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/logins?limit=<integer>&page=<integer>",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "logins"
          ],
          "query": [
            {
              "key": "limit",
              "value": "<integer>",
              "description": "Limited the result. Default is 100. Maximum can be 1000."
            },
            {
              "key": "page",
              "value": "<integer>",
              "description": "Set current Page. Default is 1."
            }
          ]
        }
      },
      "status": "OK",
      "code": 200,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "Content-Type",
          "value": "application/json"
        }
      ],
      "cookie": [
      ],
      "body": "{\n  \"page\": \"<integer>\",\n  \"pages\": \"<integer>\",\n  \"limit\": \"<integer>\",\n  \"total\": \"<integer>\",\n  \"items\": [\n    {\n      \"id\": \"<long>\",\n      \"first_name\": \"<string>\",\n      \"last_name\": \"<string>\",\n      \"display_name\": \"<string>\",\n      \"phone\": \"<string>\",\n      \"email\": \"<string>\",\n      \"email_signature\": \"<string>\",\n      \"login_type\": \"ASSISTANT\",\n      \"locale\": \"<string>\",\n      \"time_zone\": \"<string>\",\n      \"security\": {\n        \"two_factor_enabled\": false,\n        \"recovery_codes_enabled\": false,\n        \"notify_on_new_login_enabled\": true\n      }\n    },\n    {\n      \"id\": \"<long>\",\n      \"first_name\": \"<string>\",\n      \"last_name\": \"<string>\",\n      \"display_name\": \"<string>\",\n      \"phone\": \"<string>\",\n      \"email\": \"<string>\",\n      \"email_signature\": \"<string>\",\n      \"login_type\": \"ASSISTANT\",\n      \"locale\": \"<string>\",\n      \"time_zone\": \"<string>\",\n      \"security\": {\n        \"two_factor_enabled\": false,\n        \"recovery_codes_enabled\": false,\n        \"notify_on_new_login_enabled\": true\n      }\n    }\n  ]\n}"
    },
    {
      "name": "Too Many Requests",
      "originalRequest": {
        "method": "GET",
        "header": [
          {
            "description": "Added as a part of security scheme: apikey",
            "key": "Authorization",
            "value": "<API Key>"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/logins?limit=<integer>&page=<integer>",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "logins"
          ],
          "query": [
            {
              "key": "limit",
              "value": "<integer>",
              "description": "Limited the result. Default is 100. Maximum can be 1000."
            },
            {
              "key": "page",
              "value": "<integer>",
              "description": "Set current Page. Default is 1."
            }
          ]
        }
      },
      "status": "Too Many Requests",
      "code": 429,
      "_postman_previewlanguage": "text",
      "header": [
      ],
      "cookie": [
      ],
      "body": ""
    }
  ]
}