Back to Collection Items
var
http: HCkHttp;
success: Boolean;
sbResponseBody: HCkStringBuilder;
jResp: HCkJsonObject;
respStatusCode: Integer;
document_id: PWideChar;
debitor_name: PWideChar;
debitor_iban: PWideChar;
mandate_id: PWideChar;
mandate_date_of_signature: PWideChar;
local_instrument: PWideChar;
sequence_type: PWideChar;
amount: PWideChar;
reference: PWideChar;
created_at: PWideChar;
creditor_bic: PWideChar;
creditor_iban: PWideChar;
creditor_name: PWideChar;
debitor_bic: PWideChar;
debitor_address_line_1: PWideChar;
debitor_address_line2: PWideChar;
debitor_country: PWideChar;
export_at: PWideChar;
export_error: PWideChar;
id: PWideChar;
remittance_information: PWideChar;
requested_at: PWideChar;
updated_at: PWideChar;
v_type: PWideChar;
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/sepa-payments/: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)
// {
// "document_id": "<long>",
// "debitor_name": "<string>",
// "debitor_iban": "<string>",
// "mandate_id": "<string>",
// "mandate_date_of_signature": "<date>",
// "local_instrument": "COR1",
// "sequence_type": "FRST",
// "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 := CkJsonObject__stringOf(jResp,'document_id');
debitor_name := CkJsonObject__stringOf(jResp,'debitor_name');
debitor_iban := CkJsonObject__stringOf(jResp,'debitor_iban');
mandate_id := CkJsonObject__stringOf(jResp,'mandate_id');
mandate_date_of_signature := CkJsonObject__stringOf(jResp,'mandate_date_of_signature');
local_instrument := CkJsonObject__stringOf(jResp,'local_instrument');
sequence_type := CkJsonObject__stringOf(jResp,'sequence_type');
amount := CkJsonObject__stringOf(jResp,'amount');
reference := CkJsonObject__stringOf(jResp,'reference');
created_at := CkJsonObject__stringOf(jResp,'created_at');
creditor_bic := CkJsonObject__stringOf(jResp,'creditor_bic');
creditor_iban := CkJsonObject__stringOf(jResp,'creditor_iban');
creditor_name := CkJsonObject__stringOf(jResp,'creditor_name');
debitor_bic := CkJsonObject__stringOf(jResp,'debitor_bic');
debitor_address_line_1 := CkJsonObject__stringOf(jResp,'debitor_address_line_1');
debitor_address_line2 := CkJsonObject__stringOf(jResp,'debitor_address_line2');
debitor_country := CkJsonObject__stringOf(jResp,'debitor_country');
export_at := CkJsonObject__stringOf(jResp,'export_at');
export_error := CkJsonObject__stringOf(jResp,'export_error');
id := CkJsonObject__stringOf(jResp,'id');
remittance_information := CkJsonObject__stringOf(jResp,'remittance_information');
requested_at := CkJsonObject__stringOf(jResp,'requested_at');
updated_at := CkJsonObject__stringOf(jResp,'updated_at');
v_type := CkJsonObject__stringOf(jResp,'type');
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/sepa-payments/:id
Postman Collection Item JSON
{
"name": "Fetch SEPA payment",
"request": {
"method": "GET",
"header": [
{
"key": "Accept",
"value": "application/json"
}
],
"url": {
"raw": "{{baseUrl}}/sepa-payments/:id",
"host": [
"{{baseUrl}}"
],
"path": [
"sepa-payments",
":id"
],
"variable": [
{
"key": "id",
"value": "<long>",
"description": "(Required) ID of SEPA payment"
}
]
}
},
"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/:id",
"host": [
"{{baseUrl}}"
],
"path": [
"sepa-payments",
":id"
],
"variable": [
{
"key": "id"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [
],
"body": "{\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\": \"FRST\",\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}"
},
{
"name": "Not found",
"originalRequest": {
"method": "GET",
"header": [
{
"description": "Added as a part of security scheme: apikey",
"key": "Authorization",
"value": "<API Key>"
}
],
"url": {
"raw": "{{baseUrl}}/sepa-payments/:id",
"host": [
"{{baseUrl}}"
],
"path": [
"sepa-payments",
":id"
],
"variable": [
{
"key": "id"
}
]
}
},
"status": "Not Found",
"code": 404,
"_postman_previewlanguage": "text",
"header": [
],
"cookie": [
],
"body": ""
},
{
"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/:id",
"host": [
"{{baseUrl}}"
],
"path": [
"sepa-payments",
":id"
],
"variable": [
{
"key": "id"
}
]
}
},
"status": "Too Many Requests",
"code": 429,
"_postman_previewlanguage": "text",
"header": [
],
"cookie": [
],
"body": ""
}
]
}