Chilkat Online Tools

unicodeC / easybill REST API / /logins/:id

Back to Collection Items

#include <C_CkHttpW.h>
#include <C_CkStringBuilderW.h>
#include <C_CkJsonObjectW.h>

void ChilkatSample(void)
    {
    HCkHttpW http;
    BOOL success;
    HCkStringBuilderW sbResponseBody;
    HCkJsonObjectW jResp;
    int respStatusCode;
    const wchar_t *id;
    const wchar_t *first_name;
    const wchar_t *last_name;
    const wchar_t *display_name;
    const wchar_t *phone;
    const wchar_t *email;
    const wchar_t *email_signature;
    const wchar_t *login_type;
    const wchar_t *locale;
    const wchar_t *time_zone;
    BOOL Two_factor_enabled;
    BOOL Recovery_codes_enabled;
    BOOL Notify_on_new_login_enabled;

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

    http = CkHttpW_Create();

    CkHttpW_SetRequestHeader(http,L"Authorization",L"{{apiKey}}");
    CkHttpW_SetRequestHeader(http,L"Accept",L"application/json");

    sbResponseBody = CkStringBuilderW_Create();
    success = CkHttpW_QuickGetSb(http,L"https://api.easybill.de/rest/v1/logins/:id",sbResponseBody);
    if (success == FALSE) {
        wprintf(L"%s\n",CkHttpW_lastErrorText(http));
        CkHttpW_Dispose(http);
        CkStringBuilderW_Dispose(sbResponseBody);
        return;
    }

    jResp = CkJsonObjectW_Create();
    CkJsonObjectW_LoadSb(jResp,sbResponseBody);
    CkJsonObjectW_putEmitCompact(jResp,FALSE);

    wprintf(L"Response Body:\n");
    wprintf(L"%s\n",CkJsonObjectW_emit(jResp));

    respStatusCode = CkHttpW_getLastStatus(http);
    wprintf(L"Response Status Code = %d\n",respStatusCode);
    if (respStatusCode >= 400) {
        wprintf(L"Response Header:\n");
        wprintf(L"%s\n",CkHttpW_lastHeader(http));
        wprintf(L"Failed.\n");
        CkHttpW_Dispose(http);
        CkStringBuilderW_Dispose(sbResponseBody);
        CkJsonObjectW_Dispose(jResp);
        return;
    }

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

    // Chilkat functions returning "const char *" return a pointer to temporary internal memory owned and managed by Chilkat.

    id = CkJsonObjectW_stringOf(jResp,L"id");
    first_name = CkJsonObjectW_stringOf(jResp,L"first_name");
    last_name = CkJsonObjectW_stringOf(jResp,L"last_name");
    display_name = CkJsonObjectW_stringOf(jResp,L"display_name");
    phone = CkJsonObjectW_stringOf(jResp,L"phone");
    email = CkJsonObjectW_stringOf(jResp,L"email");
    email_signature = CkJsonObjectW_stringOf(jResp,L"email_signature");
    login_type = CkJsonObjectW_stringOf(jResp,L"login_type");
    locale = CkJsonObjectW_stringOf(jResp,L"locale");
    time_zone = CkJsonObjectW_stringOf(jResp,L"time_zone");
    Two_factor_enabled = CkJsonObjectW_BoolOf(jResp,L"security.two_factor_enabled");
    Recovery_codes_enabled = CkJsonObjectW_BoolOf(jResp,L"security.recovery_codes_enabled");
    Notify_on_new_login_enabled = CkJsonObjectW_BoolOf(jResp,L"security.notify_on_new_login_enabled");


    CkHttpW_Dispose(http);
    CkStringBuilderW_Dispose(sbResponseBody);
    CkJsonObjectW_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": ""
    }
  ]
}