Back to Collection Items
' This example assumes the Chilkat API to have been previously unlocked.
' See Global Unlock Sample for sample code.
Dim http As New ChilkatHttp
Dim success As Long
' Use this online tool to generate code from sample JSON: Generate Code to Create JSON
' The following JSON is sent in the request body.
' {
' "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"
' }
Dim json As New ChilkatJsonObject
success = json.UpdateString("document_id","<long>")
success = json.UpdateString("debitor_name","<string>")
success = json.UpdateString("debitor_iban","<string>")
success = json.UpdateString("mandate_id","<string>")
success = json.UpdateString("mandate_date_of_signature","<date>")
success = json.UpdateString("local_instrument","COR1")
success = json.UpdateString("sequence_type","FRST")
success = json.UpdateString("amount","<integer>")
success = json.UpdateString("reference","<string>")
success = json.UpdateString("created_at","<dateTime>")
success = json.UpdateNull("creditor_bic")
success = json.UpdateString("creditor_iban","<string>")
success = json.UpdateString("creditor_name","<string>")
success = json.UpdateNull("debitor_bic")
success = json.UpdateString("debitor_address_line_1","<string>")
success = json.UpdateString("debitor_address_line2","<string>")
success = json.UpdateString("debitor_country","<string>")
success = json.UpdateNull("export_at")
success = json.UpdateString("export_error","<string>")
success = json.UpdateString("id","<long>")
success = json.UpdateNull("remittance_information")
success = json.UpdateString("requested_at","Today's date")
success = json.UpdateString("updated_at","<string>")
success = json.UpdateString("type","DEBIT")
http.SetRequestHeader "Content-Type","application/json"
http.SetRequestHeader "Authorization","{{apiKey}}"
http.SetRequestHeader "Accept","application/json"
Dim sbRequestBody As New ChilkatStringBuilder
success = json.EmitSb(sbRequestBody)
Dim resp As ChilkatHttpResponse
Set resp = http.PTextSb("PUT","https://api.easybill.de/rest/v1/sepa-payments/:id",sbRequestBody,"utf-8","application/json",0,0)
If (http.LastMethodSuccess = 0) Then
Debug.Print http.LastErrorText
Exit Sub
End If
Dim sbResponseBody As New ChilkatStringBuilder
success = resp.GetBodySb(sbResponseBody)
Dim jResp As New ChilkatJsonObject
success = jResp.LoadSb(sbResponseBody)
jResp.EmitCompact = 0
Debug.Print "Response Body:"
Debug.Print jResp.Emit()
Dim respStatusCode As Long
respStatusCode = resp.StatusCode
Debug.Print "Response Status Code = " & respStatusCode
If (respStatusCode >= 400) Then
Debug.Print "Response Header:"
Debug.Print resp.Header
Debug.Print "Failed."
Exit Sub
End If
' 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
Dim document_id As String
document_id = jResp.StringOf("document_id")
Dim debitor_name As String
debitor_name = jResp.StringOf("debitor_name")
Dim debitor_iban As String
debitor_iban = jResp.StringOf("debitor_iban")
Dim mandate_id As String
mandate_id = jResp.StringOf("mandate_id")
Dim mandate_date_of_signature As String
mandate_date_of_signature = jResp.StringOf("mandate_date_of_signature")
Dim local_instrument As String
local_instrument = jResp.StringOf("local_instrument")
Dim sequence_type As String
sequence_type = jResp.StringOf("sequence_type")
Dim amount As String
amount = jResp.StringOf("amount")
Dim reference As String
reference = jResp.StringOf("reference")
Dim created_at As String
created_at = jResp.StringOf("created_at")
Dim creditor_bic As String
creditor_bic = jResp.StringOf("creditor_bic")
Dim creditor_iban As String
creditor_iban = jResp.StringOf("creditor_iban")
Dim creditor_name As String
creditor_name = jResp.StringOf("creditor_name")
Dim debitor_bic As String
debitor_bic = jResp.StringOf("debitor_bic")
Dim debitor_address_line_1 As String
debitor_address_line_1 = jResp.StringOf("debitor_address_line_1")
Dim debitor_address_line2 As String
debitor_address_line2 = jResp.StringOf("debitor_address_line2")
Dim debitor_country As String
debitor_country = jResp.StringOf("debitor_country")
Dim export_at As String
export_at = jResp.StringOf("export_at")
Dim export_error As String
export_error = jResp.StringOf("export_error")
Dim id As String
id = jResp.StringOf("id")
Dim remittance_information As String
remittance_information = jResp.StringOf("remittance_information")
Dim requested_at As String
requested_at = jResp.StringOf("requested_at")
Dim updated_at As String
updated_at = jResp.StringOf("updated_at")
Dim v_type As String
v_type = jResp.StringOf("type")
Curl Command
curl -X PUT
-H "Authorization: {{apiKey}}"
-H "Content-Type: application/json"
-H "Accept: application/json"
-d '{
"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"
}'
https://api.easybill.de/rest/v1/sepa-payments/:id
Postman Collection Item JSON
{
"name": "Update SEPA payment",
"request": {
"method": "PUT",
"header": [
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Accept",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "{\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}",
"options": {
"raw": {
"headerFamily": "json",
"language": "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": "PUT",
"header": [
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Accept",
"value": "application/json"
},
{
"description": "Added as a part of security scheme: apikey",
"key": "Authorization",
"value": "<API Key>"
}
],
"body": {
"mode": "raw",
"raw": "{\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}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"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": "Invalid SEPA payment",
"originalRequest": {
"method": "PUT",
"header": [
{
"key": "Content-Type",
"value": "application/json"
},
{
"description": "Added as a part of security scheme: apikey",
"key": "Authorization",
"value": "<API Key>"
}
],
"body": {
"mode": "raw",
"raw": "{\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}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/sepa-payments/:id",
"host": [
"{{baseUrl}}"
],
"path": [
"sepa-payments",
":id"
],
"variable": [
{
"key": "id"
}
]
}
},
"status": "Bad Request",
"code": 400,
"_postman_previewlanguage": "text",
"header": [
],
"cookie": [
],
"body": ""
},
{
"name": "Too Many Requests",
"originalRequest": {
"method": "PUT",
"header": [
{
"key": "Content-Type",
"value": "application/json"
},
{
"description": "Added as a part of security scheme: apikey",
"key": "Authorization",
"value": "<API Key>"
}
],
"body": {
"mode": "raw",
"raw": "{\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}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"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": ""
}
]
}