Chilkat Online Tools

Objective-C / easybill REST API / Create SEPA payment

Back to Collection Items

#import <CkoHttp.h>
#import <CkoJsonObject.h>
#import <CkoHttpResponse.h>
#import <CkoStringBuilder.h>
#import <NSString.h>

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

CkoHttp *http = [[CkoHttp alloc] init];
BOOL success;

// 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"
// }

CkoJsonObject *json = [[CkoJsonObject alloc] init];
[json UpdateString: @"document_id" value: @"<long>"];
[json UpdateString: @"debitor_name" value: @"<string>"];
[json UpdateString: @"debitor_iban" value: @"<string>"];
[json UpdateString: @"mandate_id" value: @"<string>"];
[json UpdateString: @"mandate_date_of_signature" value: @"<date>"];
[json UpdateString: @"local_instrument" value: @"COR1"];
[json UpdateString: @"sequence_type" value: @"FRST"];
[json UpdateString: @"amount" value: @"<integer>"];
[json UpdateString: @"reference" value: @"<string>"];
[json UpdateString: @"created_at" value: @"<dateTime>"];
[json UpdateNull: @"creditor_bic"];
[json UpdateString: @"creditor_iban" value: @"<string>"];
[json UpdateString: @"creditor_name" value: @"<string>"];
[json UpdateNull: @"debitor_bic"];
[json UpdateString: @"debitor_address_line_1" value: @"<string>"];
[json UpdateString: @"debitor_address_line2" value: @"<string>"];
[json UpdateString: @"debitor_country" value: @"<string>"];
[json UpdateNull: @"export_at"];
[json UpdateString: @"export_error" value: @"<string>"];
[json UpdateString: @"id" value: @"<long>"];
[json UpdateNull: @"remittance_information"];
[json UpdateString: @"requested_at" value: @"Today's date"];
[json UpdateString: @"updated_at" value: @"<string>"];
[json UpdateString: @"type" value: @"DEBIT"];

[http SetRequestHeader: @"Content-Type" value: @"application/json"];
[http SetRequestHeader: @"Authorization" value: @"{{apiKey}}"];
[http SetRequestHeader: @"Accept" value: @"application/json"];

CkoHttpResponse *resp = [http PostJson3: @"https://api.easybill.de/rest/v1/sepa-payments" contentType: @"application/json" json: json];
if (http.LastMethodSuccess == NO) {
    NSLog(@"%@",http.LastErrorText);
    return;
}

CkoStringBuilder *sbResponseBody = [[CkoStringBuilder alloc] init];
[resp GetBodySb: sbResponseBody];

CkoJsonObject *jResp = [[CkoJsonObject alloc] init];
[jResp LoadSb: sbResponseBody];
jResp.EmitCompact = NO;

NSLog(@"%@",@"Response Body:");
NSLog(@"%@",[jResp Emit]);

int respStatusCode = [resp.StatusCode intValue];
NSLog(@"%@%d",@"Response Status Code = ",respStatusCode);
if (respStatusCode >= 400) {
    NSLog(@"%@",@"Response Header:");
    NSLog(@"%@",resp.Header);
    NSLog(@"%@",@"Failed.");

    return;
}

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

NSString *document_id = [jResp StringOf: @"document_id"];
NSString *debitor_name = [jResp StringOf: @"debitor_name"];
NSString *debitor_iban = [jResp StringOf: @"debitor_iban"];
NSString *mandate_id = [jResp StringOf: @"mandate_id"];
NSString *mandate_date_of_signature = [jResp StringOf: @"mandate_date_of_signature"];
NSString *local_instrument = [jResp StringOf: @"local_instrument"];
NSString *sequence_type = [jResp StringOf: @"sequence_type"];
NSString *amount = [jResp StringOf: @"amount"];
NSString *reference = [jResp StringOf: @"reference"];
NSString *created_at = [jResp StringOf: @"created_at"];
NSString *creditor_bic = [jResp StringOf: @"creditor_bic"];
NSString *creditor_iban = [jResp StringOf: @"creditor_iban"];
NSString *creditor_name = [jResp StringOf: @"creditor_name"];
NSString *debitor_bic = [jResp StringOf: @"debitor_bic"];
NSString *debitor_address_line_1 = [jResp StringOf: @"debitor_address_line_1"];
NSString *debitor_address_line2 = [jResp StringOf: @"debitor_address_line2"];
NSString *debitor_country = [jResp StringOf: @"debitor_country"];
NSString *export_at = [jResp StringOf: @"export_at"];
NSString *export_error = [jResp StringOf: @"export_error"];
NSString *id = [jResp StringOf: @"id"];
NSString *remittance_information = [jResp StringOf: @"remittance_information"];
NSString *requested_at = [jResp StringOf: @"requested_at"];
NSString *updated_at = [jResp StringOf: @"updated_at"];
NSString *v_type = [jResp StringOf: @"type"];

Curl Command

curl -X POST
	-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

Postman Collection Item JSON

{
  "name": "Create SEPA payment",
  "request": {
    "method": "POST",
    "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",
      "host": [
        "{{baseUrl}}"
      ],
      "path": [
        "sepa-payments"
      ]
    }
  },
  "response": [
    {
      "name": "Successful operation",
      "originalRequest": {
        "method": "POST",
        "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",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "sepa-payments"
          ]
        }
      },
      "status": "Created",
      "code": 201,
      "_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": "Too Many Requests",
      "originalRequest": {
        "method": "POST",
        "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",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "sepa-payments"
          ]
        }
      },
      "status": "Too Many Requests",
      "code": 429,
      "_postman_previewlanguage": "text",
      "header": [
      ],
      "cookie": [
      ],
      "body": ""
    }
  ]
}