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"?>
// <supplier-item>
// <preferred>true</preferred>
// <supplier-part-num>PARTNUM1921</supplier-part-num>
// <supplier-aux-part-num>AUXPARTNUM1921</supplier-aux-part-num>
// </supplier-item>
//
let xml = CkoXml()!
xml.tag = "supplier-item"
xml.updateChildContent("preferred", value: "true")
xml.updateChildContent("supplier-part-num", value: "PARTNUM1921")
xml.updateChildContent("supplier-aux-part-num", value: "AUXPARTNUM1921")
// Adds the "Authorization: Bearer <access_token>" header.
http.authToken = "<access_token>"
let sbRequestBody = CkoStringBuilder()!
xml.getSb(sbRequestBody)
var resp: CkoHttpResponse? = http.pTextSb("PUT", url: "{}}]", 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 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": [
]
}