Chilkat Online Tools

delphiDll / PaymentsOS Testing with Mock Provider / 3. Create Charge

Back to Collection Items

var
http: HCkHttp;
success: Boolean;
json: HCkJsonObject;
resp: HCkHttpResponse;

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

http := CkHttp_Create();

// Use this online tool to generate code from sample JSON: Generate Code to Create JSON

// The following JSON is sent in the request body.

// {
//   "payment_method": {
//     "source_type": "ewallet",
//     "type": "untokenized",
//     "vendor": "applepay",
//     "additional_details": {
//       "untokenized_result_status": "succeed"
//     }
//   }
// }

json := CkJsonObject_Create();
CkJsonObject_UpdateString(json,'payment_method.source_type','ewallet');
CkJsonObject_UpdateString(json,'payment_method.type','untokenized');
CkJsonObject_UpdateString(json,'payment_method.vendor','applepay');
CkJsonObject_UpdateString(json,'payment_method.additional_details.untokenized_result_status','succeed');

CkHttp_SetRequestHeader(http,'x-payments-os-env','{{x-payments-os-env}}');
CkHttp_SetRequestHeader(http,'Content-Type','application/json');
CkHttp_SetRequestHeader(http,'app_id','{{app_id}}');
CkHttp_SetRequestHeader(http,'private_key','{{private_key}}');
CkHttp_SetRequestHeader(http,'idempotency_key','{{$randomInt}}');
CkHttp_SetRequestHeader(http,'api-version','1.3.0');

resp := CkHttp_PostJson3(http,'https://api.paymentsos.com/payments/{{paymentid}}/charges','application/json',json);
if (CkHttp_getLastMethodSuccess(http) = False) then
  begin
    Memo1.Lines.Add(CkHttp__lastErrorText(http));
    Exit;
  end;

Memo1.Lines.Add(IntToStr(CkHttpResponse_getStatusCode(resp)));
Memo1.Lines.Add(CkHttpResponse__bodyStr(resp));
CkHttpResponse_Dispose(resp);

CkHttp_Dispose(http);
CkJsonObject_Dispose(json);

Curl Command

curl -X POST
	-H "app_id: {{app_id}}"
	-H "private_key: {{private_key}}"
	-H "Content-Type: application/json"
	-H "api-version: 1.3.0"
	-H "x-payments-os-env: {{x-payments-os-env}}"
	-H "idempotency_key: {{$randomInt}}"
	-d '{
  "payment_method": {
    "source_type": "ewallet",
    "type": "untokenized",
    "vendor": "applepay",
    "additional_details": {
      "untokenized_result_status": "succeed"
    }
  }
}'
https://api.paymentsos.com/payments/{{paymentid}}/charges

Postman Collection Item JSON

{
  "name": "3. Create Charge",
  "event": [
    {
      "listen": "prerequest",
      "script": {
        "exec": [
          ""
        ],
        "type": "text/javascript"
      }
    }
  ],
  "request": {
    "method": "POST",
    "header": [
      {
        "key": "app_id",
        "value": "{{app_id}}"
      },
      {
        "key": "private_key",
        "value": "{{private_key}}"
      },
      {
        "key": "Content-Type",
        "value": "application/json"
      },
      {
        "key": "api-version",
        "value": "1.3.0"
      },
      {
        "key": "x-payments-os-env",
        "value": "{{x-payments-os-env}}"
      },
      {
        "key": "idempotency_key",
        "value": "{{$randomInt}}"
      }
    ],
    "body": {
      "mode": "raw",
      "raw": "{\n  \"payment_method\": {\n    \"source_type\": \"ewallet\",\n    \"type\": \"untokenized\",\n    \"vendor\": \"applepay\",\n    \"additional_details\": {\n      \"untokenized_result_status\": \"succeed\"\n    }\n  }\n}"
    },
    "url": {
      "raw": "https://api.paymentsos.com/payments/{{paymentid}}/charges",
      "protocol": "https",
      "host": [
        "api",
        "paymentsos",
        "com"
      ],
      "path": [
        "payments",
        "{{paymentid}}",
        "charges"
      ]
    },
    "description": "Create a new charge"
  },
  "response": [
  ]
}