Chilkat Online Tools

Unicode C++ / Razorpay APIs / Transfer Reversals

Back to Collection Items

void ChilkatSample(void)
    {
    http.put_BasicAuth(true);    http.put_Login(L"username");    http.put_Password(L"password");    json.UpdateInt(L"amount",100);
    }

Curl Command

curl -X POST
	-u 'username:password'
	-H "content-type: application/json"
	-d '{
	"amount": 100
}'
https://api.razorpay.com/v1/transfers/{trf_id}/reversals

Postman Collection Item JSON

{
  "name": "Transfer Reversals",
  "request": {
    "method": "POST",
    "header": [
      {
        "key": "content-type",
        "value": "application/json"
      }
    ],
    "body": {
      "mode": "raw",
      "raw": "{\n\t\"amount\": 100\n}"
    },
    "url": {
      "raw": "https://api.razorpay.com/v1/transfers/{trf_id}/reversals",
      "protocol": "https",
      "host": [
        "api",
        "razorpay",
        "com"
      ],
      "path": [
        "v1",
        "transfers",
        "{trf_id}",
        "reversals"
      ]
    }
  },
  "response": [
  ]
}