Chilkat Online Tools

Unicode C++ / DocuSign Rooms API - v2 / Retrieves the list of valid currencies.

Back to Collection Items

void ChilkatSample(void)
    {
    http.put_AuthToken(L"{{accessToken}}");    success = http.QuickGetSb(L"https://domain.com/v2/currencies",sbResponseBody);
    }

Curl Command

curl -X GET
	-H "Accept: text/plain, application/json, text/json"
	-H "Authorization: Bearer {{accessToken}}"
https://domain.com/v2/currencies

Postman Collection Item JSON

{
  "name": "Retrieves the list of valid currencies.",
  "request": {
    "method": "GET",
    "header": [
      {
        "key": "Accept",
        "value": "text/plain, application/json, text/json"
      },
      {
        "key": "Authorization",
        "value": "Bearer {{accessToken}}"
      }
    ],
    "url": {
      "raw": "{{baseUrl}}/v2/currencies",
      "host": [
        "{{baseUrl}}"
      ],
      "path": [
        "v2",
        "currencies"
      ]
    }
  },
  "response": [
  ]
}