Chilkat Online Tools

Unicode C++ / APPIA API / GET A VIRTUAL CARD DETAILS

Back to Collection Items

void ChilkatSample(void)
    {
    http.put_AuthToken(L"{{auth}}");    success = http.QuickGetSb(L"https://domain.com/vcard/details/1",sbResponseBody);
    }

Curl Command

curl -X GET
	-H "Authorization: Bearer <access_token>"
	-H "Content-Type: application/json"
	-H "Authorization: Bearer {{auth}}"
https://domain.com/vcard/details/1

Postman Collection Item JSON

{
  "name": "GET  A VIRTUAL CARD DETAILS",
  "protocolProfileBehavior": {
    "disableBodyPruning": true
  },
  "request": {
    "auth": {
      "type": "bearer",
      "bearer": [
        {
          "key": "token",
          "value": "{{auth}}",
          "type": "string"
        }
      ]
    },
    "method": "GET",
    "header": [
      {
        "key": "Content-Type",
        "value": "application/json"
      },
      {
        "key": "Authorization",
        "value": "Bearer {{auth}}"
      }
    ],
    "body": {
      "mode": "raw",
      "raw": ""
    },
    "url": {
      "raw": "{{url}}/vcard/details/1",
      "host": [
        "{{url}}"
      ],
      "path": [
        "vcard",
        "details",
        "1"
      ]
    },
    "description": "Send virtual card id as params"
  },
  "response": [
  ]
}