Back to Collection Items
// Important: Don't forget to include the call to System.loadLibrary
// as shown at the bottom of this code sample.
package com.test;
import android.app.Activity;
import com.chilkatsoft.*;
import android.widget.TextView;
import android.os.Bundle;
public class SimpleActivity extends Activity {
private static final String TAG = "Chilkat";
// Called when the activity is first created.
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
CkHttp http = new CkHttp();
boolean success;
// 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>
//
CkXml xml = new CkXml();
xml.put_Tag("exchange-rate");
xml.UpdateAttrAt("rate",true,"type","decimal");
xml.UpdateChildContent("rate","0.801539004");
xml.UpdateAttrAt("rate-date",true,"type","dateTime");
xml.UpdateChildContent("rate-date","2021-11-22");
xml.UpdateChildContent("from-currency|code","USD");
xml.UpdateChildContent("to-currency|code","EUR");
// Adds the "Authorization: Bearer <access_token>" header.
http.put_AuthToken("<access_token>");
CkStringBuilder sbRequestBody = new CkStringBuilder();
xml.GetXmlSb(sbRequestBody);
CkHttpResponse resp = http.PTextSb("POST","[\"code\",\"decimals\"]}]",sbRequestBody,"utf-8","application/xml",false,false);
if (http.get_LastMethodSuccess() == false) {
Log.i(TAG, http.lastErrorText());
return;
}
Log.i(TAG, String.valueOf(resp.get_StatusCode()));
Log.i(TAG, resp.bodyStr());
}
static {
System.loadLibrary("chilkat");
// Note: If the incorrect library name is passed to System.loadLibrary,
// then you will see the following error message at application startup:
//"The application <your-application-name> has stopped unexpectedly. Please try again."
}
}
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": [
]
}