Back to Collection Items
#import <CkoHttp.h>
#import <CkoXml.h>
#import <CkoStringBuilder.h>
#import <CkoHttpResponse.h>
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
CkoHttp *http = [[CkoHttp alloc] init];
BOOL success;
// 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>
//
CkoXml *xml = [[CkoXml alloc] init];
xml.Tag = @"supplier-item";
[xml UpdateAttrAt: @"price" autoCreate: YES attrName: @"type" attrValue: @"decimal"];
[xml UpdateChildContent: @"price" value: @"34.50"];
[xml UpdateChildContent: @"supplier-part-num" value: @"PARTNUM1821"];
[xml UpdateAttrAt: @"preferred" autoCreate: YES attrName: @"type" attrValue: @"boolean"];
[xml UpdateChildContent: @"preferred" value: @"false"];
[xml UpdateChildContent: @"currency|code" value: @"USD"];
[xml UpdateChildContentInt: @"supplier|number" value: [NSNumber numberWithInt: 0001012212]];
[xml UpdateChildContentInt: @"contract|number" value: [NSNumber numberWithInt: 10001]];
[xml UpdateChildContentInt: @"item|id" value: [NSNumber numberWithInt: 3522]];
// Adds the "Authorization: Bearer <access_token>" header.
http.AuthToken = @"<access_token>";
CkoStringBuilder *sbRequestBody = [[CkoStringBuilder alloc] init];
[xml GetXmlSb: sbRequestBody];
CkoHttpResponse *resp = [http PTextSb: @"POST" url: @"{}}]" textData: sbRequestBody charset: @"utf-8" contentType: @"application/xml" md5: NO gzip: NO];
if (http.LastMethodSuccess == NO) {
NSLog(@"%@",http.LastErrorText);
return;
}
NSLog(@"%d",[resp.StatusCode intValue]);
NSLog(@"%@",resp.BodyStr);
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": [
]
}