Chilkat Online Tools

delphiDll / easybill REST API / /logins/:id

Back to Collection Items

var
http: HCkHttp;
success: Boolean;
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;

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

http := CkHttp_Create();

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

sbResponseBody := CkStringBuilder_Create();
success := CkHttp_QuickGetSb(http,'https://api.easybill.de/rest/v1/logins/:id',sbResponseBody);
if (success = False) then
  begin
    Memo1.Lines.Add(CkHttp__lastErrorText(http));
    Exit;
  end;

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

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

respStatusCode := CkHttp_getLastStatus(http);
Memo1.Lines.Add('Response Status Code = ' + IntToStr(respStatusCode));
if (respStatusCode >= 400) then
  begin
    Memo1.Lines.Add('Response Header:');
    Memo1.Lines.Add(CkHttp__lastHeader(http));
    Memo1.Lines.Add('Failed.');
    Exit;
  end;

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

// {
//   "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

id := CkJsonObject__stringOf(jResp,'id');
first_name := CkJsonObject__stringOf(jResp,'first_name');
last_name := CkJsonObject__stringOf(jResp,'last_name');
display_name := CkJsonObject__stringOf(jResp,'display_name');
phone := CkJsonObject__stringOf(jResp,'phone');
email := CkJsonObject__stringOf(jResp,'email');
email_signature := CkJsonObject__stringOf(jResp,'email_signature');
login_type := CkJsonObject__stringOf(jResp,'login_type');
locale := CkJsonObject__stringOf(jResp,'locale');
time_zone := CkJsonObject__stringOf(jResp,'time_zone');
Two_factor_enabled := CkJsonObject_BoolOf(jResp,'security.two_factor_enabled');
Recovery_codes_enabled := CkJsonObject_BoolOf(jResp,'security.recovery_codes_enabled');
Notify_on_new_login_enabled := CkJsonObject_BoolOf(jResp,'security.notify_on_new_login_enabled');

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

Curl Command

curl -X GET
	-H "Authorization: {{apiKey}}"
	-H "Accept: application/json"
https://api.easybill.de/rest/v1/logins/:id

Postman Collection Item JSON

{
  "name": "/logins/:id",
  "request": {
    "method": "GET",
    "header": [
      {
        "key": "Accept",
        "value": "application/json"
      }
    ],
    "url": {
      "raw": "{{baseUrl}}/logins/:id",
      "host": [
        "{{baseUrl}}"
      ],
      "path": [
        "logins",
        ":id"
      ],
      "variable": [
        {
          "key": "id",
          "value": "<long>",
          "description": "(Required) ID of the login that needs to be fetched"
        }
      ]
    }
  },
  "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/:id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "logins",
            ":id"
          ],
          "variable": [
            {
              "key": "id"
            }
          ]
        }
      },
      "status": "OK",
      "code": 200,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "Content-Type",
          "value": "application/json"
        }
      ],
      "cookie": [
      ],
      "body": "{\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}"
    },
    {
      "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/:id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "logins",
            ":id"
          ],
          "variable": [
            {
              "key": "id"
            }
          ]
        }
      },
      "status": "Too Many Requests",
      "code": 429,
      "_postman_previewlanguage": "text",
      "header": [
      ],
      "cookie": [
      ],
      "body": ""
    }
  ]
}