Chilkat Online Tools

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

Back to Collection Items

IncludeFile "CkStringBuilder.pb"
IncludeFile "CkHttp.pb"
IncludeFile "CkHttpResponse.pb"
IncludeFile "CkXml.pb"

Procedure ChilkatExample()

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

    http.i = CkHttp::ckCreate()
    If http.i = 0
        Debug "Failed to create object."
        ProcedureReturn
    EndIf

    success.i

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

    xml.i = CkXml::ckCreate()
    If xml.i = 0
        Debug "Failed to create object."
        ProcedureReturn
    EndIf

    CkXml::setCkTag(xml, "budget-line")
    CkXml::ckUpdateChildContent(xml,"notes","Indirect procurement budget for Q3-2020")
    CkXml::ckUpdateChildContent(xml,"description","Initial budget")
    CkXml::ckUpdateAttrAt(xml,"amount",1,"type","decimal")
    CkXml::ckUpdateChildContent(xml,"amount","75000.00")
    CkXml::ckUpdateChildContentInt(xml,"segment-1",01)
    CkXml::ckUpdateChildContentInt(xml,"segment-2",300)
    CkXml::ckUpdateChildContentInt(xml,"segment-3",3400)
    CkXml::ckUpdateChildContentInt(xml,"segment-4",615000)
    CkXml::ckUpdateChildContentInt(xml,"owner-is-approver",2)
    CkXml::ckUpdateChildContentInt(xml,"overrun-calculation",1)
    CkXml::ckUpdateChildContent(xml,"period|name","2020 Q3 - C100")
    CkXml::ckUpdateChildContent(xml,"owner|login","sofia.aa")
    CkXml::ckUpdateChildContent(xml,"currency|code","USD")

    ; Adds the "Authorization: Bearer <access_token>" header.
    CkHttp::setCkAuthToken(http, "<access_token>")

    sbRequestBody.i = CkStringBuilder::ckCreate()
    If sbRequestBody.i = 0
        Debug "Failed to create object."
        ProcedureReturn
    EndIf

    CkXml::ckGetXmlSb(xml,sbRequestBody)

    resp.i = CkHttp::ckPTextSb(http,"POST","https://domain.com/budget_lines",sbRequestBody,"utf-8","application/xml",0,0)
    If CkHttp::ckLastMethodSuccess(http) = 0
        Debug CkHttp::ckLastErrorText(http)
        CkHttp::ckDispose(http)
        CkXml::ckDispose(xml)
        CkStringBuilder::ckDispose(sbRequestBody)
        ProcedureReturn
    EndIf

    Debug Str(CkHttpResponse::ckStatusCode(resp))
    Debug CkHttpResponse::ckBodyStr(resp)
    CkHttpResponse::ckDispose(resp)



    CkHttp::ckDispose(http)
    CkXml::ckDispose(xml)
    CkStringBuilder::ckDispose(sbRequestBody)


    ProcedureReturn
EndProcedure

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