Back to Collection Items
LOCAL loHttp
LOCAL lnSuccess
LOCAL loXml
LOCAL loSbRequestBody
LOCAL loResp
* This example assumes the Chilkat API to have been previously unlocked.
* See Global Unlock Sample for sample code.
* For versions of Chilkat < 10.0.0, use CreateObject('Chilkat_9_5_0.Http')
loHttp = CreateObject('Chilkat.Http')
* 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>
* <preferred>true</preferred>
* <supplier-part-num>PARTNUM1921</supplier-part-num>
* <supplier-aux-part-num>AUXPARTNUM1921</supplier-aux-part-num>
* </supplier-item>
*
* For versions of Chilkat < 10.0.0, use CreateObject('Chilkat_9_5_0.Xml')
loXml = CreateObject('Chilkat.Xml')
loXml.Tag = "supplier-item"
loXml.UpdateChildContent("preferred","true")
loXml.UpdateChildContent("supplier-part-num","PARTNUM1921")
loXml.UpdateChildContent("supplier-aux-part-num","AUXPARTNUM1921")
* Adds the "Authorization: Bearer <access_token>" header.
loHttp.AuthToken = "<access_token>"
* For versions of Chilkat < 10.0.0, use CreateObject('Chilkat_9_5_0.StringBuilder')
loSbRequestBody = CreateObject('Chilkat.StringBuilder')
loXml.GetXmlSb(loSbRequestBody)
loResp = loHttp.PTextSb("PUT","{}}]",loSbRequestBody,"utf-8","application/xml",0,0)
IF (loHttp.LastMethodSuccess = 0) THEN
? loHttp.LastErrorText
RELEASE loHttp
RELEASE loXml
RELEASE loSbRequestBody
CANCEL
ENDIF
? STR(loResp.StatusCode)
? loResp.BodyStr
RELEASE loResp
RELEASE loHttp
RELEASE loXml
RELEASE loSbRequestBody
Curl Command
curl -X PUT
-H "Authorization: Bearer <access_token>"
-d '<supplier-item>
<preferred>true</preferred>
<supplier-part-num>PARTNUM1921</supplier-part-num>
<supplier-aux-part-num>AUXPARTNUM1921</supplier-aux-part-num>
</supplier-item>'
https://domain.com/supplier_items/:id?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": "Update Existing Supplier Item",
"request": {
"method": "PUT",
"header": [
],
"body": {
"mode": "raw",
"raw": "<supplier-item>\n<preferred>true</preferred>\n<supplier-part-num>PARTNUM1921</supplier-part-num>\n<supplier-aux-part-num>AUXPARTNUM1921</supplier-aux-part-num>\n</supplier-item>\n"
},
"url": {
"raw": "{{URL}}/supplier_items/:id?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",
":id"
],
"query": [
{
"key": "fields",
"value": "[\"id\",\"supplier-part-num\",\"supplier-aux-part-num\",{\"supplier\":[\"id\",\"name\",\"number\"]},{\"item\": [\"id\",\"name\",\"item-number\",\"active\"]},{\"custom_fields\": {}}]"
}
],
"variable": [
{
"key": "id",
"value": "3615"
}
]
}
},
"response": [
]
}