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"?>
// <comment>
// <comments>Test Comment</comments>
// </comment>
//
CkoXml *xml = [[CkoXml alloc] init];
xml.Tag = @"comment";
[xml UpdateChildContent: @"comments" value: @"Test Comment"];
// 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: @"https://domain.com/requisitions/:id/comments?fields=[\"id\"]" 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 '<comment>
<comments>Test Comment</comments>
</comment>'
https://domain.com/requisitions/:id/comments?fields=["id"]
Postman Collection Item JSON
{
"name": "Add a comment to a requisition",
"request": {
"method": "POST",
"header": [
],
"body": {
"mode": "raw",
"raw": " \n<comment>\n <comments>Test Comment</comments>\n</comment>",
"options": {
"raw": {
"language": "xml"
}
}
},
"url": {
"raw": "{{URL}}/requisitions/:id/comments?fields=[\"id\"]",
"host": [
"{{URL}}"
],
"path": [
"requisitions",
":id",
"comments"
],
"query": [
{
"key": "fields",
"value": "[\"id\"]"
}
],
"variable": [
{
"key": "id",
"value": "4025",
"description": "Coupa Internal Requisition Id"
}
]
}
},
"response": [
]
}