Back to Collection Items
func chilkatTest() {
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
let http = CkoHttp()!
var success: Bool
// 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>
//
let xml = CkoXml()!
xml.tag = "budget-line"
xml.updateChildContent("notes", value: "Indirect procurement budget for Q3-2020")
xml.updateChildContent("description", value: "Initial budget")
xml.updateAttr(at: "amount", autoCreate: true, attrName: "type", attrValue: "decimal")
xml.updateChildContent("amount", value: "75000.00")
xml.updateChildContentInt("segment-1", value: 01)
xml.updateChildContentInt("segment-2", value: 300)
xml.updateChildContentInt("segment-3", value: 3400)
xml.updateChildContentInt("segment-4", value: 615000)
xml.updateChildContentInt("owner-is-approver", value: 2)
xml.updateChildContentInt("overrun-calculation", value: 1)
xml.updateChildContent("period|name", value: "2020 Q3 - C100")
xml.updateChildContent("owner|login", value: "sofia.aa")
xml.updateChildContent("currency|code", value: "USD")
// Adds the "Authorization: Bearer <access_token>" header.
http.authToken = "<access_token>"
let sbRequestBody = CkoStringBuilder()!
xml.getSb(sbRequestBody)
var resp: CkoHttpResponse? = http.pTextSb("POST", url: "https://domain.com/budget_lines", textData: sbRequestBody, charset: "utf-8", contentType: "application/xml", md5: false, gzip: false)
if http.lastMethodSuccess == false {
print("\(http.lastErrorText!)")
return
}
print("\(resp!.statusCode.intValue)")
print("\(resp!.bodyStr!)")
resp = nil
}
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": [
]
}