Chilkat Online Tools

TCL / Coupa Postman Collection - OAuth - Master / Create New Supplier Item agaisnt an existing item

Back to Collection Items

load ./chilkat.dll

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

set http [new_CkHttp]

# 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"?>
# <supplier-item>
#     <price type="decimal">34.50</price>
#     <supplier-part-num>PARTNUM1821</supplier-part-num>
#     <preferred type="boolean">false</preferred>
#     <currency>
#         <code>USD</code>
#     </currency>
#     <supplier>
#         <number>0001012212</number>
#     </supplier>
#     <contract>
#         <number>10001</number>
#     </contract>
#     <item>
#         <id>3522</id>
#     </item>
# </supplier-item>
# 

set xml [new_CkXml]

CkXml_put_Tag $xml "supplier-item"
CkXml_UpdateAttrAt $xml "price" 1 "type" "decimal"
CkXml_UpdateChildContent $xml "price" "34.50"
CkXml_UpdateChildContent $xml "supplier-part-num" "PARTNUM1821"
CkXml_UpdateAttrAt $xml "preferred" 1 "type" "boolean"
CkXml_UpdateChildContent $xml "preferred" "false"
CkXml_UpdateChildContent $xml "currency|code" "USD"
CkXml_UpdateChildContentInt $xml "supplier|number" 0001012212
CkXml_UpdateChildContentInt $xml "contract|number" 10001
CkXml_UpdateChildContentInt $xml "item|id" 3522

# Adds the "Authorization: Bearer <access_token>" header.
CkHttp_put_AuthToken $http "<access_token>"

set sbRequestBody [new_CkStringBuilder]

CkXml_GetXmlSb $xml $sbRequestBody

# resp is a CkHttpResponse
set resp [CkHttp_PTextSb $http "POST" "{}}]" $sbRequestBody "utf-8" "application/xml" 0 0]
if {[CkHttp_get_LastMethodSuccess $http] == 0} then {
    puts [CkHttp_lastErrorText $http]
    delete_CkHttp $http
    delete_CkXml $xml
    delete_CkStringBuilder $sbRequestBody
    exit
}

puts [CkHttpResponse_get_StatusCode $resp]
puts [CkHttpResponse_bodyStr $resp]
delete_CkHttpResponse $resp


delete_CkHttp $http
delete_CkXml $xml
delete_CkStringBuilder $sbRequestBody

Curl Command

curl -X POST
	-H "Authorization: Bearer <access_token>"
	-d '<supplier-item>
    <price type="decimal">34.50</price>
    <supplier-part-num>PARTNUM1821</supplier-part-num>
    <preferred type="boolean">false</preferred>
    <currency>
        <code>USD</code>
    </currency>
    <supplier>
        <number>0001012212</number>
    </supplier>
    <contract>
        <number>10001</number>
    </contract>
    <item>
    <id>3522</id>
    </item>
</supplier-item>'
https://domain.com/supplier_items?fields=["id","supplier-part-num","supplier-aux-part-num",{"supplier":["id","name","number"]},{"item": ["id","name","item-number","active"]},{"custom_fields": {}}]

Postman Collection Item JSON

{
  "name": "Create New Supplier Item agaisnt an existing item",
  "request": {
    "method": "POST",
    "header": [
    ],
    "body": {
      "mode": "raw",
      "raw": "<supplier-item>\n    <price type=\"decimal\">34.50</price>\n    <supplier-part-num>PARTNUM1821</supplier-part-num>\n    <preferred type=\"boolean\">false</preferred>\n    <currency>\n        <code>USD</code>\n    </currency>\n    <supplier>\n        <number>0001012212</number>\n    </supplier>\n    <contract>\n        <number>10001</number>\n    </contract>\n    <item>\n    <id>3522</id>\n    </item>\n</supplier-item>"
    },
    "url": {
      "raw": "{{URL}}/supplier_items?fields=[\"id\",\"supplier-part-num\",\"supplier-aux-part-num\",{\"supplier\":[\"id\",\"name\",\"number\"]},{\"item\": [\"id\",\"name\",\"item-number\",\"active\"]},{\"custom_fields\": {}}]",
      "host": [
        "{{URL}}"
      ],
      "path": [
        "supplier_items"
      ],
      "query": [
        {
          "key": "fields",
          "value": "[\"id\",\"supplier-part-num\",\"supplier-aux-part-num\",{\"supplier\":[\"id\",\"name\",\"number\"]},{\"item\": [\"id\",\"name\",\"item-number\",\"active\"]},{\"custom_fields\": {}}]"
        }
      ]
    }
  },
  "response": [
  ]
}