Chilkat Online Tools

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

Back to Collection Items

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

$oHttp = ObjCreate("Chilkat_9_5_0.Http")
Local $bSuccess

; 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>
; 

$oXml = ObjCreate("Chilkat_9_5_0.Xml")
$oXml.Tag = "exchange-rate"
$oXml.UpdateAttrAt("rate",True,"type","decimal")
$oXml.UpdateChildContent "rate","0.801539004"
$oXml.UpdateAttrAt("rate-date",True,"type","dateTime")
$oXml.UpdateChildContent "rate-date","2021-11-22"
$oXml.UpdateChildContent "from-currency|code","USD"
$oXml.UpdateChildContent "to-currency|code","EUR"

; Adds the "Authorization: Bearer <access_token>" header.
$oHttp.AuthToken = "<access_token>"

$oSbRequestBody = ObjCreate("Chilkat_9_5_0.StringBuilder")
$oXml.GetXmlSb($oSbRequestBody)

Local $oResp = $oHttp.PTextSb("POST","[""code"",""decimals""]}]",$oSbRequestBody,"utf-8","application/xml",False,False)
If ($oHttp.LastMethodSuccess = False) Then
    ConsoleWrite($oHttp.LastErrorText & @CRLF)
    Exit
EndIf

ConsoleWrite($oResp.StatusCode & @CRLF)
ConsoleWrite($oResp.BodyStr & @CRLF)

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": [
  ]
}