Chilkat Online Tools

PowerBuilder / Coupa Postman Collection - OAuth - Master / Create budget line

Back to Collection Items

integer li_rc
oleobject loo_Http
integer li_Success
oleobject loo_Xml
oleobject loo_SbRequestBody
oleobject loo_Resp

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

loo_Http = create oleobject
li_rc = loo_Http.ConnectToNewObject("Chilkat_9_5_0.Http")
if li_rc < 0 then
    destroy loo_Http
    MessageBox("Error","Connecting to COM object failed")
    return
end if

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

loo_Xml = create oleobject
li_rc = loo_Xml.ConnectToNewObject("Chilkat_9_5_0.Xml")

loo_Xml.Tag = "budget-line"
loo_Xml.UpdateChildContent("notes","Indirect procurement budget for Q3-2020")
loo_Xml.UpdateChildContent("description","Initial budget")
loo_Xml.UpdateAttrAt("amount",1,"type","decimal")
loo_Xml.UpdateChildContent("amount","75000.00")
loo_Xml.UpdateChildContentInt("segment-1",01)
loo_Xml.UpdateChildContentInt("segment-2",300)
loo_Xml.UpdateChildContentInt("segment-3",3400)
loo_Xml.UpdateChildContentInt("segment-4",615000)
loo_Xml.UpdateChildContentInt("owner-is-approver",2)
loo_Xml.UpdateChildContentInt("overrun-calculation",1)
loo_Xml.UpdateChildContent("period|name","2020 Q3 - C100")
loo_Xml.UpdateChildContent("owner|login","sofia.aa")
loo_Xml.UpdateChildContent("currency|code","USD")

// Adds the "Authorization: Bearer <access_token>" header.
loo_Http.AuthToken = "<access_token>"

loo_SbRequestBody = create oleobject
li_rc = loo_SbRequestBody.ConnectToNewObject("Chilkat_9_5_0.StringBuilder")

loo_Xml.GetXmlSb(loo_SbRequestBody)

loo_Resp = loo_Http.PTextSb("POST","https://domain.com/budget_lines",loo_SbRequestBody,"utf-8","application/xml",0,0)
if loo_Http.LastMethodSuccess = 0 then
    Write-Debug loo_Http.LastErrorText
    destroy loo_Http
    destroy loo_Xml
    destroy loo_SbRequestBody
    return
end if

Write-Debug string(loo_Resp.StatusCode)
Write-Debug loo_Resp.BodyStr
destroy loo_Resp


destroy loo_Http
destroy loo_Xml
destroy loo_SbRequestBody

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