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"?>
// <budget-line>
// <notes>Indirect procurement budget for Q3-2020</notes>
// <description>Initial budget</description>
// <amount type="decimal">75000.00</amount>
// <segment-1>01</segment-1>
// <segment-2>300</segment-2>
// <segment-3>3400</segment-3>
// <segment-4>615000</segment-4>
// <owner-is-approver>2</owner-is-approver>
// <overrun-calculation>1</overrun-calculation>
// <period>
// <name>2020 Q3 - C100</name>
// </period>
// <owner>
// <login>sofia.aa</login>
// </owner>
// <currency>
// <code>USD</code>
// </currency>
// </budget-line>
//
CkXml xml = new CkXml();
xml.put_Tag("budget-line");
xml.UpdateChildContent("notes","Indirect procurement budget for Q3-2020");
xml.UpdateChildContent("description","Initial budget");
xml.UpdateAttrAt("amount",true,"type","decimal");
xml.UpdateChildContent("amount","75000.00");
xml.UpdateChildContentInt("segment-1",01);
xml.UpdateChildContentInt("segment-2",300);
xml.UpdateChildContentInt("segment-3",3400);
xml.UpdateChildContentInt("segment-4",615000);
xml.UpdateChildContentInt("owner-is-approver",2);
xml.UpdateChildContentInt("overrun-calculation",1);
xml.UpdateChildContent("period|name","2020 Q3 - C100");
xml.UpdateChildContent("owner|login","sofia.aa");
xml.UpdateChildContent("currency|code","USD");
// Adds the "Authorization: Bearer <access_token>" header.
http.put_AuthToken("<access_token>");
CkStringBuilder sbRequestBody = new CkStringBuilder();
xml.GetXmlSb(sbRequestBody);
CkHttpResponse resp = http.PTextSb("POST","https://domain.com/budget_lines",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 '<budget-line>
<notes>Indirect procurement budget for Q3-2020</notes>
<description>Initial budget</description>
<amount type="decimal">75000.00</amount>
<segment-1>01</segment-1>
<segment-2>300</segment-2>
<segment-3>3400</segment-3>
<segment-4>615000</segment-4>
<owner-is-approver>2</owner-is-approver>
<overrun-calculation>1</overrun-calculation>
<period>
<name>2020 Q3 - C100</name>
</period>
<owner>
<login>sofia.aa</login>
</owner>
<currency>
<code>USD</code>
</currency>
</budget-line>'
https://domain.com/budget_lines
Postman Collection Item JSON
{
"name": "Create budget line",
"request": {
"method": "POST",
"header": [
],
"body": {
"mode": "raw",
"raw": "<budget-line>\n <notes>Indirect procurement budget for Q3-2020</notes>\n <description>Initial budget</description>\n <amount type=\"decimal\">75000.00</amount>\n <segment-1>01</segment-1>\n <segment-2>300</segment-2>\n <segment-3>3400</segment-3>\n <segment-4>615000</segment-4>\n <owner-is-approver>2</owner-is-approver>\n <overrun-calculation>1</overrun-calculation>\n <period>\n <name>2020 Q3 - C100</name>\n </period>\n <owner>\n <login>sofia.aa</login>\n </owner>\n <currency>\n <code>USD</code>\n </currency>\n</budget-line>"
},
"url": {
"raw": "{{URL}}/budget_lines",
"host": [
"{{URL}}"
],
"path": [
"budget_lines"
]
}
},
"response": [
]
}