Chilkat Online Tools

unicodeC / Coupa Postman Collection - OAuth - Master / Create FxRates

Back to Collection Items

#include <C_CkHttpW.h>
#include <C_CkXmlW.h>
#include <C_CkStringBuilderW.h>
#include <C_CkHttpResponseW.h>

void ChilkatSample(void)
    {
    HCkHttpW http;
    BOOL success;
    HCkXmlW xml;
    HCkStringBuilderW sbRequestBody;
    HCkHttpResponseW resp;

    // This example assumes the Chilkat API to have been previously unlocked.
    // See Global Unlock Sample for sample code.

    http = CkHttpW_Create();

    // Use this online tool to generate code from sample XML: Generate Code to Create XML

    // The following XML is sent in the request body.

    // <?xml version="1.0" encoding="utf-8"?>
    // <exchange-rate>
    //     <rate type="decimal">0.801539004</rate>
    //     <rate-date type="dateTime">2021-11-22</rate-date>
    //     <from-currency>
    //         <code>USD</code>
    //     </from-currency>
    //     <to-currency>
    //         <code>EUR</code>
    //     </to-currency>
    // </exchange-rate>
    // 

    xml = CkXmlW_Create();
    CkXmlW_putTag(xml,L"exchange-rate");
    CkXmlW_UpdateAttrAt(xml,L"rate",TRUE,L"type",L"decimal");
    CkXmlW_UpdateChildContent(xml,L"rate",L"0.801539004");
    CkXmlW_UpdateAttrAt(xml,L"rate-date",TRUE,L"type",L"dateTime");
    CkXmlW_UpdateChildContent(xml,L"rate-date",L"2021-11-22");
    CkXmlW_UpdateChildContent(xml,L"from-currency|code",L"USD");
    CkXmlW_UpdateChildContent(xml,L"to-currency|code",L"EUR");

    // Adds the "Authorization: Bearer <access_token>" header.
    CkHttpW_putAuthToken(http,L"<access_token>");

    sbRequestBody = CkStringBuilderW_Create();
    CkXmlW_GetXmlSb(xml,sbRequestBody);

    resp = CkHttpW_PTextSb(http,L"POST",L"[\"code\",\"decimals\"]}]",sbRequestBody,L"utf-8",L"application/xml",FALSE,FALSE);
    if (CkHttpW_getLastMethodSuccess(http) == FALSE) {
        wprintf(L"%s\n",CkHttpW_lastErrorText(http));
        CkHttpW_Dispose(http);
        CkXmlW_Dispose(xml);
        CkStringBuilderW_Dispose(sbRequestBody);
        return;
    }

    wprintf(L"%d\n",CkHttpResponseW_getStatusCode(resp));
    wprintf(L"%s\n",CkHttpResponseW_bodyStr(resp));
    CkHttpResponseW_Dispose(resp);


    CkHttpW_Dispose(http);
    CkXmlW_Dispose(xml);
    CkStringBuilderW_Dispose(sbRequestBody);

    }

Curl Command

curl -X POST
	-H "Authorization: Bearer <access_token>"
	-d '<exchange-rate>
    <rate type="decimal">0.801539004</rate>
    <rate-date type="dateTime">2021-11-22</rate-date>
    <from-currency>
        <code>USD</code>
    </from-currency>
    <to-currency>
        <code>EUR</code>
    </to-currency>
</exchange-rate>'
https://domain.com/exchange_rates?fields=["id","rate","rate_date",{"from_currency": ["code","decimals"]},{"to_currency": ["code","decimals"]}]

Postman Collection Item JSON

{
  "name": "Create FxRates",
  "request": {
    "method": "POST",
    "header": [
    ],
    "body": {
      "mode": "raw",
      "raw": "<exchange-rate>\n    <rate type=\"decimal\">0.801539004</rate>\n    <rate-date type=\"dateTime\">2021-11-22</rate-date>\n    <from-currency>\n        <code>USD</code>\n    </from-currency>\n    <to-currency>\n        <code>EUR</code>\n    </to-currency>\n</exchange-rate>",
      "options": {
        "raw": {
          "language": "xml"
        }
      }
    },
    "url": {
      "raw": "{{URL}}/exchange_rates?fields=[\"id\",\"rate\",\"rate_date\",{\"from_currency\": [\"code\",\"decimals\"]},{\"to_currency\": [\"code\",\"decimals\"]}]",
      "host": [
        "{{URL}}"
      ],
      "path": [
        "exchange_rates"
      ],
      "query": [
        {
          "key": "fields",
          "value": "[\"id\",\"rate\",\"rate_date\",{\"from_currency\": [\"code\",\"decimals\"]},{\"to_currency\": [\"code\",\"decimals\"]}]"
        }
      ]
    }
  },
  "response": [
  ]
}