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"?>
// <inventory-transaction>
// <quantity type="decimal">1.0</quantity>
// <type>ReceivingQuantityConsumption</type>
// <order-line>
// <id type="integer">7009</id>
// <order-header-id type="integer">5247</order-header-id>
// </order-line>
// </inventory-transaction>
//
let xml = CkoXml()!
xml.tag = "inventory-transaction"
xml.updateAttr(at: "quantity", autoCreate: true, attrName: "type", attrValue: "decimal")
xml.updateChildContent("quantity", value: "1.0")
xml.updateChildContent("type", value: "ReceivingQuantityConsumption")
xml.updateAttr(at: "order-line|id", autoCreate: true, attrName: "type", attrValue: "integer")
xml.updateChildContentInt("order-line|id", value: 7009)
xml.updateAttr(at: "order-line|order-header-id", autoCreate: true, attrName: "type", attrValue: "integer")
xml.updateChildContentInt("order-line|order-header-id", value: 5247)
// Adds the "Authorization: Bearer <access_token>" header.
http.authToken = "<access_token>"
let sbRequestBody = CkoStringBuilder()!
xml.getSb(sbRequestBody)
var resp: CkoHttpResponse? = http.pTextSb("POST", url: "https://domain.com/receiving_transactions?fields=[\"id\"]", 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 POST
-H "Authorization: Bearer <access_token>"
-d '<inventory-transaction>
<quantity type="decimal">1.0</quantity>
<type>ReceivingQuantityConsumption</type>
<order-line>
<id type="integer">7009</id>
<order-header-id type="integer">5247</order-header-id>
</order-line>
</inventory-transaction>'
https://domain.com/receiving_transactions?fields=["id"]
Postman Collection Item JSON
{
"name": "Create a new goods receipt",
"protocolProfileBehavior": {
"disabledSystemHeaders": {}
},
"request": {
"method": "POST",
"header": [
],
"body": {
"mode": "raw",
"raw": "<inventory-transaction>\r\n <quantity type=\"decimal\">1.0</quantity>\r\n <type>ReceivingQuantityConsumption</type>\r\n <order-line>\r\n <id type=\"integer\">7009</id>\r\n <order-header-id type=\"integer\">5247</order-header-id>\r\n </order-line>\r\n</inventory-transaction>",
"options": {
"raw": {
"language": "xml"
}
}
},
"url": {
"raw": "{{URL}}/receiving_transactions?fields=[\"id\"]",
"host": [
"{{URL}}"
],
"path": [
"receiving_transactions"
],
"query": [
{
"key": "fields",
"value": "[\"id\"]"
}
]
}
},
"response": [
]
}