Chilkat Online Tools

Delphi (DLL) / APPIA API / VERIFY PAYMENT

Back to Collection Items

var

begin
CkJsonObject_UpdateInt(json,'trans_id',1654747);CkJsonObject_UpdateBool(json,'save_card',False);CkHttp_putAuthToken(http,'<access_token>');


Curl Command

curl -X POST
	-H "Authorization: Bearer <access_token>"
	-H "Content-Type: application/json"
	-d '{
    "trans_id" : 1654747,
    "save_card" : false
}'
https://domain.com/payment/

Postman Collection Item JSON

{
  "name": "VERIFY PAYMENT",
  "request": {
    "auth": {
      "type": "bearer",
      "bearer": [
        {
          "key": "token",
          "value": "{{auth}}",
          "type": "string"
        }
      ]
    },
    "method": "POST",
    "header": [
      {
        "key": "Content-Type",
        "value": "application/json"
      }
    ],
    "body": {
      "mode": "raw",
      "raw": "{\n    \"trans_id\" : 1654747,\n    \"save_card\" : false\n}"
    },
    "url": {
      "raw": "{{url}}/payment/",
      "host": [
        "{{url}}"
      ],
      "path": [
        "payment",
        ""
      ]
    }
  },
  "response": [
  ]
}