Chilkat Online Tools

ERROR!

------------------- GenerateCode ----------------------
ImpliedContentType: 
---- begin chilkat script ----
// This example assumes the Chilkat API to have been previously unlocked.
// See {{-global_unlock:::Global Unlock Sample-}} for sample code.

new Http http;
ckbool success;

new JsonObject queryParams;
ignore = queryParams.UpdateString("limit","<integer>");
ignore = queryParams.UpdateString("page","<integer>");

call http.SetRequestHeader("Authorization","{{apiKey}}");
call http.SetRequestHeader("Accept","application/json");


HttpResponse resp = http.QuickRequestParams("GET","https://api.easybill.de/rest/v1/webhooks",queryParams);
if (http.LastMethodSuccess == ckfalse) {
    println http.LastErrorText;
    return;
}

new StringBuilder sbResponseBody;
ignore = resp.GetBodySb(sbResponseBody);

new JsonObject jResp;
call jResp.LoadSb(sbResponseBody);
jResp.EmitCompact = ckfalse;

println "Response Body:";
println jResp.Emit();

int respStatusCode = resp.StatusCode;
println "Response Status Code = ",respStatusCode;
if (respStatusCode >= 400) {
    println "Response Header:";
    println resp.Header;
    println "Failed.";
    delete resp;
    return;
}
delete resp;

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

// {
//   "page": "<integer>",
//   "pages": "<integer>",
//   "limit": "<integer>",
//   "total": "<integer>",
//   "items": [
//     {
//       "url": "<string>",
//       "content_type": "json",
//       "secret": "<string>",
//       "events": [
//         "document.update",
//         "document.deleted"
//       ],
//       "description": "<string>",
//       "id": "<long>",
//       "is_active": false,
//       "last_response": {
//         "date": "<dateTime>",
//         "code": "<integer>",
//         "response": "<string>"
//       }
//     },
//     {
//       "url": "<string>",
//       "content_type": "form",
//       "secret": "<string>",
//       "events": [
//         "contact.create",
//         "postbox.update"
//       ],
//       "description": "<string>",
//       "id": "<long>",
//       "is_active": false,
//       "last_response": {
//         "date": "<dateTime>",
//         "code": "<integer>",
//         "response": "<string>"
//       }
//     }
//   ]
// }

// Sample code for parsing the JSON response...
// Use this online tool to generate parsing code from sample JSON: {{.https://tools.chilkat.io/jsonParse|||Generate JSON Parsing Code.}}

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

string url;
string content_type;
string secret;
string description;
string id;
ckbool is_active;
string Date;
string Code;
string Response;
int j;
int count_j;
string strVal;

string page = jResp.StringOf("page");
string pages = jResp.StringOf("pages");
string limit = jResp.StringOf("limit");
string total = jResp.StringOf("total");
int i = 0;
int count_i = jResp.SizeOfArray("items");
while i < count_i {
    jResp.I = i;
    url = jResp.StringOf("items[i].url");
    content_type = jResp.StringOf("items[i].content_type");
    secret = jResp.StringOf("items[i].secret");
    description = jResp.StringOf("items[i].description");
    id = jResp.StringOf("items[i].id");
    is_active = jResp.BoolOf("items[i].is_active");
    Date = jResp.StringOf("items[i].last_response.date");
    Code = jResp.StringOf("items[i].last_response.code");
    Response = jResp.StringOf("items[i].last_response.response");
    j = 0;
    count_j = jResp.SizeOfArray("items[i].events");
    while j < count_j {
        jResp.J = j;
        strVal = jResp.StringOf("items[i].events[j]");
        j = j + 1;
    }
    i = i + 1;
}



---- end chilkat script ----

Classic ASP / easybill REST API / Fetch WebHooks list

Back to Collection Items

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<body>
<%
' This example assumes the Chilkat API to have been previously unlocked.
' See Global Unlock Sample for sample code.

' For versions of Chilkat < 10.0.0, use CreateObject("Chilkat_9_5_0.Http")
set http = Server.CreateObject("Chilkat.Http")

' For versions of Chilkat < 10.0.0, use CreateObject("Chilkat_9_5_0.JsonObject")
set queryParams = Server.CreateObject("Chilkat.JsonObject")
success = queryParams.UpdateString("limit","<integer>")
success = queryParams.UpdateString("page","<integer>")

http.SetRequestHeader "Authorization","{{apiKey}}"
http.SetRequestHeader "Accept","application/json"

' resp is a Chilkat.HttpResponse
Set resp = http.QuickRequestParams("GET","https://api.easybill.de/rest/v1/webhooks",queryParams)
If (http.LastMethodSuccess = 0) Then
    Response.Write "<pre>" & Server.HTMLEncode( http.LastErrorText) & "</pre>"
    Response.End
End If

' For versions of Chilkat < 10.0.0, use CreateObject("Chilkat_9_5_0.StringBuilder")
set sbResponseBody = Server.CreateObject("Chilkat.StringBuilder")
success = resp.GetBodySb(sbResponseBody)

' For versions of Chilkat < 10.0.0, use CreateObject("Chilkat_9_5_0.JsonObject")
set jResp = Server.CreateObject("Chilkat.JsonObject")
success = jResp.LoadSb(sbResponseBody)
jResp.EmitCompact = 0

Response.Write "<pre>" & Server.HTMLEncode( "Response Body:") & "</pre>"
Response.Write "<pre>" & Server.HTMLEncode( jResp.Emit()) & "</pre>"

respStatusCode = resp.StatusCode
Response.Write "<pre>" & Server.HTMLEncode( "Response Status Code = " & respStatusCode) & "</pre>"
If (respStatusCode >= 400) Then
    Response.Write "<pre>" & Server.HTMLEncode( "Response Header:") & "</pre>"
    Response.Write "<pre>" & Server.HTMLEncode( resp.Header) & "</pre>"
    Response.Write "<pre>" & Server.HTMLEncode( "Failed.") & "</pre>"

    Response.End
End If

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

' {
'   "page": "<integer>",
'   "pages": "<integer>",
'   "limit": "<integer>",
'   "total": "<integer>",
'   "items": [
'     {
'       "url": "<string>",
'       "content_type": "json",
'       "secret": "<string>",
'       "events": [
'         "document.update",
'         "document.deleted"
'       ],
'       "description": "<string>",
'       "id": "<long>",
'       "is_active": false,
'       "last_response": {
'         "date": "<dateTime>",
'         "code": "<integer>",
'         "response": "<string>"
'       }
'     },
'     {
'       "url": "<string>",
'       "content_type": "form",
'       "secret": "<string>",
'       "events": [
'         "contact.create",
'         "postbox.update"
'       ],
'       "description": "<string>",
'       "id": "<long>",
'       "is_active": false,
'       "last_response": {
'         "date": "<dateTime>",
'         "code": "<integer>",
'         "response": "<string>"
'       }
'     }
'   ]
' }

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

page = jResp.StringOf("page")
pages = jResp.StringOf("pages")
limit = jResp.StringOf("limit")
total = jResp.StringOf("total")
i = 0
count_i = jResp.SizeOfArray("items")
Do While i < count_i
    jResp.I = i
    url = jResp.StringOf("items[i].url")
    content_type = jResp.StringOf("items[i].content_type")
    secret = jResp.StringOf("items[i].secret")
    description = jResp.StringOf("items[i].description")
    id = jResp.StringOf("items[i].id")
    is_active = jResp.BoolOf("items[i].is_active")
    Date = jResp.StringOf("items[i].last_response.date")
    Code = jResp.StringOf("items[i].last_response.code")
ERROR: ASP example cannot use request or response as a variable name.
    j = 0
    count_j = jResp.SizeOfArray("items[i].events")
    Do While j < count_j
        jResp.J = j
        strVal = jResp.StringOf("items[i].events[j]")
        j = j + 1
    Loop
    i = i + 1
Loop

%>
</body>
</html>

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

Postman Collection Item JSON

{
  "name": "Fetch WebHooks list",
  "request": {
    "method": "GET",
    "header": [
      {
        "key": "Accept",
        "value": "application/json"
      }
    ],
    "url": {
      "raw": "{{baseUrl}}/webhooks?limit=<integer>&page=<integer>",
      "host": [
        "{{baseUrl}}"
      ],
      "path": [
        "webhooks"
      ],
      "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}}/webhooks?limit=<integer>&page=<integer>",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "webhooks"
          ],
          "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      \"url\": \"<string>\",\n      \"content_type\": \"json\",\n      \"secret\": \"<string>\",\n      \"events\": [\n        \"document.update\",\n        \"document.deleted\"\n      ],\n      \"description\": \"<string>\",\n      \"id\": \"<long>\",\n      \"is_active\": false,\n      \"last_response\": {\n        \"date\": \"<dateTime>\",\n        \"code\": \"<integer>\",\n        \"response\": \"<string>\"\n      }\n    },\n    {\n      \"url\": \"<string>\",\n      \"content_type\": \"form\",\n      \"secret\": \"<string>\",\n      \"events\": [\n        \"contact.create\",\n        \"postbox.update\"\n      ],\n      \"description\": \"<string>\",\n      \"id\": \"<long>\",\n      \"is_active\": false,\n      \"last_response\": {\n        \"date\": \"<dateTime>\",\n        \"code\": \"<integer>\",\n        \"response\": \"<string>\"\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}}/webhooks?limit=<integer>&page=<integer>",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "webhooks"
          ],
          "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": ""
    }
  ]
}