Chilkat Online Tools

delphiAx / PaymentsOS Testing with Mock Provider / 4. Create Capture

Back to Collection Items

var
http: TChilkatHttp;
success: Integer;
json: TChilkatJsonObject;
resp: IChilkatHttpResponse;

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

http := TChilkatHttp.Create(Self);

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

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

// {
//   "amount": 2500
// }

json := TChilkatJsonObject.Create(Self);
json.UpdateInt('amount',2500);

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

resp := http.PostJson3('https://api.paymentsos.com/payments/{{paymentid}}/captures','application/json',json.ControlInterface);
if (http.LastMethodSuccess = 0) then
  begin
    Memo1.Lines.Add(http.LastErrorText);
    Exit;
  end;

Memo1.Lines.Add(IntToStr(resp.StatusCode));
Memo1.Lines.Add(resp.BodyStr);

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 '{
  "amount": 2500
}'
https://api.paymentsos.com/payments/{{paymentid}}/captures

Postman Collection Item JSON

{
  "name": "4. Create Capture",
  "event": [
    {
      "listen": "test",
      "script": {
        "type": "text/javascript",
        "exec": [
          "var jsonData = JSON.parse(responseBody);",
          "postman.setEnvironmentVariable(\"captureid\", jsonData.id);"
        ]
      }
    }
  ],
  "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  \"amount\": 2500\n}"
    },
    "url": {
      "raw": "https://api.paymentsos.com/payments/{{paymentid}}/captures",
      "protocol": "https",
      "host": [
        "api",
        "paymentsos",
        "com"
      ],
      "path": [
        "payments",
        "{{paymentid}}",
        "captures"
      ]
    },
    "description": "Create a new capture"
  },
  "response": [
  ]
}