Chilkat Online Tools

unicodeC / easybill REST API / Fetch SEPA payments list

Back to Collection Items

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

void ChilkatSample(void)
    {
    HCkHttpW http;
    BOOL success;
    HCkJsonObjectW queryParams;
    HCkHttpResponseW resp;
    HCkStringBuilderW sbResponseBody;
    HCkJsonObjectW jResp;
    int respStatusCode;
    const wchar_t *document_id;
    const wchar_t *debitor_name;
    const wchar_t *debitor_iban;
    const wchar_t *mandate_id;
    const wchar_t *mandate_date_of_signature;
    const wchar_t *local_instrument;
    const wchar_t *sequence_type;
    const wchar_t *amount;
    const wchar_t *reference;
    const wchar_t *created_at;
    const wchar_t *creditor_bic;
    const wchar_t *creditor_iban;
    const wchar_t *creditor_name;
    const wchar_t *debitor_bic;
    const wchar_t *debitor_address_line_1;
    const wchar_t *debitor_address_line2;
    const wchar_t *debitor_country;
    const wchar_t *export_at;
    const wchar_t *export_error;
    const wchar_t *id;
    const wchar_t *remittance_information;
    const wchar_t *requested_at;
    const wchar_t *updated_at;
    const wchar_t *v_type;
    const wchar_t *page;
    const wchar_t *pages;
    const wchar_t *limit;
    const wchar_t *total;
    int i;
    int count_i;

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

    http = CkHttpW_Create();

    queryParams = CkJsonObjectW_Create();
    CkJsonObjectW_UpdateString(queryParams,L"limit",L"<integer>");
    CkJsonObjectW_UpdateString(queryParams,L"page",L"<integer>");
    CkJsonObjectW_UpdateString(queryParams,L"document_id",L"<string>");

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

    resp = CkHttpW_QuickRequestParams(http,L"GET",L"https://api.easybill.de/rest/v1/sepa-payments",queryParams);
    if (CkHttpW_getLastMethodSuccess(http) == FALSE) {
        wprintf(L"%s\n",CkHttpW_lastErrorText(http));
        CkHttpW_Dispose(http);
        CkJsonObjectW_Dispose(queryParams);
        return;
    }

    sbResponseBody = CkStringBuilderW_Create();
    CkHttpResponseW_GetBodySb(resp,sbResponseBody);

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

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

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

    CkHttpResponseW_Dispose(resp);

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

    // {
    //   "page": "<integer>",
    //   "pages": "<integer>",
    //   "limit": "<integer>",
    //   "total": "<integer>",
    //   "items": [
    //     {
    //       "document_id": "<long>",
    //       "debitor_name": "<string>",
    //       "debitor_iban": "<string>",
    //       "mandate_id": "<string>",
    //       "mandate_date_of_signature": "<date>",
    //       "local_instrument": "B2B",
    //       "sequence_type": "RCUR",
    //       "amount": "<integer>",
    //       "reference": "<string>",
    //       "created_at": "<dateTime>",
    //       "creditor_bic": null,
    //       "creditor_iban": "<string>",
    //       "creditor_name": "<string>",
    //       "debitor_bic": null,
    //       "debitor_address_line_1": "<string>",
    //       "debitor_address_line2": "<string>",
    //       "debitor_country": "<string>",
    //       "export_at": null,
    //       "export_error": "<string>",
    //       "id": "<long>",
    //       "remittance_information": null,
    //       "requested_at": "Today's date",
    //       "updated_at": "<string>",
    //       "type": "DEBIT"
    //     },
    //     {
    //       "document_id": "<long>",
    //       "debitor_name": "<string>",
    //       "debitor_iban": "<string>",
    //       "mandate_id": "<string>",
    //       "mandate_date_of_signature": "<date>",
    //       "local_instrument": "COR1",
    //       "sequence_type": "FNAL",
    //       "amount": "<integer>",
    //       "reference": "<string>",
    //       "created_at": "<dateTime>",
    //       "creditor_bic": null,
    //       "creditor_iban": "<string>",
    //       "creditor_name": "<string>",
    //       "debitor_bic": null,
    //       "debitor_address_line_1": "<string>",
    //       "debitor_address_line2": "<string>",
    //       "debitor_country": "<string>",
    //       "export_at": null,
    //       "export_error": "<string>",
    //       "id": "<long>",
    //       "remittance_information": null,
    //       "requested_at": "Today's date",
    //       "updated_at": "<string>",
    //       "type": "DEBIT"
    //     }
    //   ]
    // }

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

    page = CkJsonObjectW_stringOf(jResp,L"page");
    pages = CkJsonObjectW_stringOf(jResp,L"pages");
    limit = CkJsonObjectW_stringOf(jResp,L"limit");
    total = CkJsonObjectW_stringOf(jResp,L"total");
    i = 0;
    count_i = CkJsonObjectW_SizeOfArray(jResp,L"items");
    while (i < count_i) {
        CkJsonObjectW_putI(jResp,i);
        document_id = CkJsonObjectW_stringOf(jResp,L"items[i].document_id");
        debitor_name = CkJsonObjectW_stringOf(jResp,L"items[i].debitor_name");
        debitor_iban = CkJsonObjectW_stringOf(jResp,L"items[i].debitor_iban");
        mandate_id = CkJsonObjectW_stringOf(jResp,L"items[i].mandate_id");
        mandate_date_of_signature = CkJsonObjectW_stringOf(jResp,L"items[i].mandate_date_of_signature");
        local_instrument = CkJsonObjectW_stringOf(jResp,L"items[i].local_instrument");
        sequence_type = CkJsonObjectW_stringOf(jResp,L"items[i].sequence_type");
        amount = CkJsonObjectW_stringOf(jResp,L"items[i].amount");
        reference = CkJsonObjectW_stringOf(jResp,L"items[i].reference");
        created_at = CkJsonObjectW_stringOf(jResp,L"items[i].created_at");
        creditor_bic = CkJsonObjectW_stringOf(jResp,L"items[i].creditor_bic");
        creditor_iban = CkJsonObjectW_stringOf(jResp,L"items[i].creditor_iban");
        creditor_name = CkJsonObjectW_stringOf(jResp,L"items[i].creditor_name");
        debitor_bic = CkJsonObjectW_stringOf(jResp,L"items[i].debitor_bic");
        debitor_address_line_1 = CkJsonObjectW_stringOf(jResp,L"items[i].debitor_address_line_1");
        debitor_address_line2 = CkJsonObjectW_stringOf(jResp,L"items[i].debitor_address_line2");
        debitor_country = CkJsonObjectW_stringOf(jResp,L"items[i].debitor_country");
        export_at = CkJsonObjectW_stringOf(jResp,L"items[i].export_at");
        export_error = CkJsonObjectW_stringOf(jResp,L"items[i].export_error");
        id = CkJsonObjectW_stringOf(jResp,L"items[i].id");
        remittance_information = CkJsonObjectW_stringOf(jResp,L"items[i].remittance_information");
        requested_at = CkJsonObjectW_stringOf(jResp,L"items[i].requested_at");
        updated_at = CkJsonObjectW_stringOf(jResp,L"items[i].updated_at");
        v_type = CkJsonObjectW_stringOf(jResp,L"items[i].type");
        i = i + 1;
    }



    CkHttpW_Dispose(http);
    CkJsonObjectW_Dispose(queryParams);
    CkStringBuilderW_Dispose(sbResponseBody);
    CkJsonObjectW_Dispose(jResp);

    }

Curl Command

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

Postman Collection Item JSON

{
  "name": "Fetch SEPA payments list",
  "request": {
    "method": "GET",
    "header": [
      {
        "key": "Accept",
        "value": "application/json"
      }
    ],
    "url": {
      "raw": "{{baseUrl}}/sepa-payments?limit=<integer>&page=<integer>&document_id=<string>",
      "host": [
        "{{baseUrl}}"
      ],
      "path": [
        "sepa-payments"
      ],
      "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."
        },
        {
          "key": "document_id",
          "value": "<string>",
          "description": "Filter SEPA payment by document_id. You can add multiple ids separate by comma like id,id,id."
        }
      ]
    }
  },
  "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}}/sepa-payments?limit=<integer>&page=<integer>&document_id=<string>",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "sepa-payments"
          ],
          "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."
            },
            {
              "key": "document_id",
              "value": "<string>",
              "description": "Filter SEPA payment by document_id. You can add multiple ids separate by comma like id,id,id."
            }
          ]
        }
      },
      "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      \"document_id\": \"<long>\",\n      \"debitor_name\": \"<string>\",\n      \"debitor_iban\": \"<string>\",\n      \"mandate_id\": \"<string>\",\n      \"mandate_date_of_signature\": \"<date>\",\n      \"local_instrument\": \"B2B\",\n      \"sequence_type\": \"RCUR\",\n      \"amount\": \"<integer>\",\n      \"reference\": \"<string>\",\n      \"created_at\": \"<dateTime>\",\n      \"creditor_bic\": null,\n      \"creditor_iban\": \"<string>\",\n      \"creditor_name\": \"<string>\",\n      \"debitor_bic\": null,\n      \"debitor_address_line_1\": \"<string>\",\n      \"debitor_address_line2\": \"<string>\",\n      \"debitor_country\": \"<string>\",\n      \"export_at\": null,\n      \"export_error\": \"<string>\",\n      \"id\": \"<long>\",\n      \"remittance_information\": null,\n      \"requested_at\": \"Today's date\",\n      \"updated_at\": \"<string>\",\n      \"type\": \"DEBIT\"\n    },\n    {\n      \"document_id\": \"<long>\",\n      \"debitor_name\": \"<string>\",\n      \"debitor_iban\": \"<string>\",\n      \"mandate_id\": \"<string>\",\n      \"mandate_date_of_signature\": \"<date>\",\n      \"local_instrument\": \"COR1\",\n      \"sequence_type\": \"FNAL\",\n      \"amount\": \"<integer>\",\n      \"reference\": \"<string>\",\n      \"created_at\": \"<dateTime>\",\n      \"creditor_bic\": null,\n      \"creditor_iban\": \"<string>\",\n      \"creditor_name\": \"<string>\",\n      \"debitor_bic\": null,\n      \"debitor_address_line_1\": \"<string>\",\n      \"debitor_address_line2\": \"<string>\",\n      \"debitor_country\": \"<string>\",\n      \"export_at\": null,\n      \"export_error\": \"<string>\",\n      \"id\": \"<long>\",\n      \"remittance_information\": null,\n      \"requested_at\": \"Today's date\",\n      \"updated_at\": \"<string>\",\n      \"type\": \"DEBIT\"\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}}/sepa-payments?limit=<integer>&page=<integer>&document_id=<string>",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "sepa-payments"
          ],
          "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."
            },
            {
              "key": "document_id",
              "value": "<string>",
              "description": "Filter SEPA payment by document_id. You can add multiple ids separate by comma like id,id,id."
            }
          ]
        }
      },
      "status": "Too Many Requests",
      "code": 429,
      "_postman_previewlanguage": "text",
      "header": [
      ],
      "cookie": [
      ],
      "body": ""
    }
  ]
}