Chilkat Online Tools

PureBasic / easybill REST API / Fetch SEPA payments list

Back to Collection Items

IncludeFile "CkJsonObject.pb"
IncludeFile "CkStringBuilder.pb"
IncludeFile "CkHttp.pb"
IncludeFile "CkHttpResponse.pb"

Procedure ChilkatExample()

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

    http.i = CkHttp::ckCreate()
    If http.i = 0
        Debug "Failed to create object."
        ProcedureReturn
    EndIf

    success.i

    queryParams.i = CkJsonObject::ckCreate()
    If queryParams.i = 0
        Debug "Failed to create object."
        ProcedureReturn
    EndIf

    CkJsonObject::ckUpdateString(queryParams,"limit","<integer>")
    CkJsonObject::ckUpdateString(queryParams,"page","<integer>")
    CkJsonObject::ckUpdateString(queryParams,"document_id","<string>")

    CkHttp::ckSetRequestHeader(http,"Authorization","{{apiKey}}")
    CkHttp::ckSetRequestHeader(http,"Accept","application/json")

    resp.i = CkHttp::ckQuickRequestParams(http,"GET","https://api.easybill.de/rest/v1/sepa-payments",queryParams)
    If CkHttp::ckLastMethodSuccess(http) = 0
        Debug CkHttp::ckLastErrorText(http)
        CkHttp::ckDispose(http)
        CkJsonObject::ckDispose(queryParams)
        ProcedureReturn
    EndIf

    sbResponseBody.i = CkStringBuilder::ckCreate()
    If sbResponseBody.i = 0
        Debug "Failed to create object."
        ProcedureReturn
    EndIf

    CkHttpResponse::ckGetBodySb(resp,sbResponseBody)

    jResp.i = CkJsonObject::ckCreate()
    If jResp.i = 0
        Debug "Failed to create object."
        ProcedureReturn
    EndIf

    CkJsonObject::ckLoadSb(jResp,sbResponseBody)
    CkJsonObject::setCkEmitCompact(jResp, 0)

    Debug "Response Body:"
    Debug CkJsonObject::ckEmit(jResp)

    respStatusCode.i = CkHttpResponse::ckStatusCode(resp)
    Debug "Response Status Code = " + Str(respStatusCode)
    If respStatusCode >= 400
        Debug "Response Header:"
        Debug CkHttpResponse::ckHeader(resp)
        Debug "Failed."
        CkHttpResponse::ckDispose(resp)

        CkHttp::ckDispose(http)
        CkJsonObject::ckDispose(queryParams)
        CkStringBuilder::ckDispose(sbResponseBody)
        CkJsonObject::ckDispose(jResp)
        ProcedureReturn
    EndIf

    CkHttpResponse::ckDispose(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

    document_id.s
    debitor_name.s
    debitor_iban.s
    mandate_id.s
    mandate_date_of_signature.s
    local_instrument.s
    sequence_type.s
    amount.s
    reference.s
    created_at.s
    creditor_bic.s
    creditor_iban.s
    creditor_name.s
    debitor_bic.s
    debitor_address_line_1.s
    debitor_address_line2.s
    debitor_country.s
    export_at.s
    export_error.s
    id.s
    remittance_information.s
    requested_at.s
    updated_at.s
    v_type.s

    page.s = CkJsonObject::ckStringOf(jResp,"page")
    pages.s = CkJsonObject::ckStringOf(jResp,"pages")
    limit.s = CkJsonObject::ckStringOf(jResp,"limit")
    total.s = CkJsonObject::ckStringOf(jResp,"total")
    i.i = 0
    count_i.i = CkJsonObject::ckSizeOfArray(jResp,"items")
    While i < count_i
        CkJsonObject::setCkI(jResp, i)
        document_id = CkJsonObject::ckStringOf(jResp,"items[i].document_id")
        debitor_name = CkJsonObject::ckStringOf(jResp,"items[i].debitor_name")
        debitor_iban = CkJsonObject::ckStringOf(jResp,"items[i].debitor_iban")
        mandate_id = CkJsonObject::ckStringOf(jResp,"items[i].mandate_id")
        mandate_date_of_signature = CkJsonObject::ckStringOf(jResp,"items[i].mandate_date_of_signature")
        local_instrument = CkJsonObject::ckStringOf(jResp,"items[i].local_instrument")
        sequence_type = CkJsonObject::ckStringOf(jResp,"items[i].sequence_type")
        amount = CkJsonObject::ckStringOf(jResp,"items[i].amount")
        reference = CkJsonObject::ckStringOf(jResp,"items[i].reference")
        created_at = CkJsonObject::ckStringOf(jResp,"items[i].created_at")
        creditor_bic = CkJsonObject::ckStringOf(jResp,"items[i].creditor_bic")
        creditor_iban = CkJsonObject::ckStringOf(jResp,"items[i].creditor_iban")
        creditor_name = CkJsonObject::ckStringOf(jResp,"items[i].creditor_name")
        debitor_bic = CkJsonObject::ckStringOf(jResp,"items[i].debitor_bic")
        debitor_address_line_1 = CkJsonObject::ckStringOf(jResp,"items[i].debitor_address_line_1")
        debitor_address_line2 = CkJsonObject::ckStringOf(jResp,"items[i].debitor_address_line2")
        debitor_country = CkJsonObject::ckStringOf(jResp,"items[i].debitor_country")
        export_at = CkJsonObject::ckStringOf(jResp,"items[i].export_at")
        export_error = CkJsonObject::ckStringOf(jResp,"items[i].export_error")
        id = CkJsonObject::ckStringOf(jResp,"items[i].id")
        remittance_information = CkJsonObject::ckStringOf(jResp,"items[i].remittance_information")
        requested_at = CkJsonObject::ckStringOf(jResp,"items[i].requested_at")
        updated_at = CkJsonObject::ckStringOf(jResp,"items[i].updated_at")
        v_type = CkJsonObject::ckStringOf(jResp,"items[i].type")
        i = i + 1
    Wend


    CkHttp::ckDispose(http)
    CkJsonObject::ckDispose(queryParams)
    CkStringBuilder::ckDispose(sbResponseBody)
    CkJsonObject::ckDispose(jResp)


    ProcedureReturn
EndProcedure

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": ""
    }
  ]
}