Chilkat Online Tools

Unicode C++ / Razorpay APIs / Update a Virtual Account

Back to Collection Items

void ChilkatSample(void)
    {
    http.put_BasicAuth(true);    http.put_Login(L"username");    http.put_Password(L"password");    json.UpdateString(L"receivers.types[0]",L"vpa");
    }

Curl Command

curl -X POST
	-u 'username:password'
	-d '{
    "receivers": {
        "types": [
            "vpa"
        ]
    }
}'
https://api.razorpay.com/v1/virtual_accounts/{va_id}/receiver

Postman Collection Item JSON

{
  "name": "Update a Virtual Account",
  "request": {
    "method": "POST",
    "header": [
    ],
    "body": {
      "mode": "raw",
      "raw": "{\n    \"receivers\": {\n        \"types\": [\n            \"vpa\"\n        ]\n    }\n}",
      "options": {
        "raw": {
          "language": "json"
        }
      }
    },
    "url": {
      "raw": "https://api.razorpay.com/v1/virtual_accounts/{va_id}/receiver",
      "protocol": "https",
      "host": [
        "api",
        "razorpay",
        "com"
      ],
      "path": [
        "v1",
        "virtual_accounts",
        "{va_id}",
        "receiver"
      ]
    },
    "description": "You can add a receiver to a virtual account using this API."
  },
  "response": [
  ]
}