Chilkat Online Tools

Delphi (DLL) / APPIA API / VERIFY APPIA ACCOUNT

Back to Collection Items

var

begin
CkJsonObject_UpdateString(json,'receipient_phone','909847797');CkHttp_putAuthToken(http,'<access_token>');


Curl Command

curl -X POST
	-H "Authorization: Bearer <access_token>"
	-H "Content-Type: application/json"
	-d '{
    "receipient_phone": "909847797"
}'
https://domain.com/bank/verify/deltrade

Postman Collection Item JSON

{
  "name": "VERIFY APPIA ACCOUNT",
  "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    \"receipient_phone\": \"909847797\"\n}"
    },
    "url": {
      "raw": "{{url}}/bank/verify/deltrade",
      "host": [
        "{{url}}"
      ],
      "path": [
        "bank",
        "verify",
        "deltrade"
      ]
    }
  },
  "response": [
  ]
}