Back to Collection Items
#include <CkHttpW.h>
#include <CkXmlW.h>
#include <CkStringBuilderW.h>
#include <CkHttpResponseW.h>
void ChilkatSample(void)
{
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
CkHttpW http;
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"?>
// <project>
// <name>RR API Creation</name>
// <active type="boolean">true</active>
// <open type="boolean">true</open>
// <description>Random Description comes from intake</description>
// <start-date type="dateTime">2021-11-22T00:00:00-07:00</start-date>
// <enabled-tabs type="array">
// <enabled-tab>contracts</enabled-tab>
// <enabled-tab>quote_requests</enabled-tab>
// <enabled-tab>suppliers</enabled-tab>
// </enabled-tabs>
// <status>draft</status>
// <template-group>
// <id type="integer">1</id>
// <name>Jason Test - Single Task</name>
// </template-group>
// <custom-fields>
// <checkbox type="boolean">false</checkbox>
// <cf15-analytics-test nil="true"/>
// <custom-field-14 nil="true"/>
// <date nil="true"/>
// <projected-headcount nil="true"/>
// <estimated-savings nil="true"/>
// <evycustom-field-11>TESTING</evycustom-field-11>
// <n2 nil="true"/>
// <text-box/>
// <multi-select nil="true"/>
// <custom-attachment nil="true"/>
// <custom-field-8 type="boolean">false</custom-field-8>
// <cfproattachment nil="true"/>
// <start-date1 nil="true"/>
// </custom-fields>
// </project>
//
CkXmlW xml;
xml.put_Tag(L"project");
xml.UpdateChildContent(L"name",L"RR API Creation");
xml.UpdateAttrAt(L"active",true,L"type",L"boolean");
xml.UpdateChildContent(L"active",L"true");
xml.UpdateAttrAt(L"open",true,L"type",L"boolean");
xml.UpdateChildContent(L"open",L"true");
xml.UpdateChildContent(L"description",L"Random Description comes from intake");
xml.UpdateAttrAt(L"start-date",true,L"type",L"dateTime");
xml.UpdateChildContent(L"start-date",L"2021-11-22T00:00:00-07:00");
xml.UpdateAttrAt(L"enabled-tabs",true,L"type",L"array");
xml.UpdateChildContent(L"enabled-tabs|enabled-tab",L"contracts");
xml.UpdateChildContent(L"enabled-tabs|enabled-tab[1]",L"quote_requests");
xml.UpdateChildContent(L"enabled-tabs|enabled-tab[2]",L"suppliers");
xml.UpdateChildContent(L"status",L"draft");
xml.UpdateAttrAt(L"template-group|id",true,L"type",L"integer");
xml.UpdateChildContentInt(L"template-group|id",1);
xml.UpdateChildContent(L"template-group|name",L"Jason Test - Single Task");
xml.UpdateAttrAt(L"custom-fields|checkbox",true,L"type",L"boolean");
xml.UpdateChildContent(L"custom-fields|checkbox",L"false");
xml.UpdateAttrAt(L"custom-fields|cf15-analytics-test",true,L"nil",L"true");
xml.UpdateAttrAt(L"custom-fields|custom-field-14",true,L"nil",L"true");
xml.UpdateAttrAt(L"custom-fields|date",true,L"nil",L"true");
xml.UpdateAttrAt(L"custom-fields|projected-headcount",true,L"nil",L"true");
xml.UpdateAttrAt(L"custom-fields|estimated-savings",true,L"nil",L"true");
xml.UpdateChildContent(L"custom-fields|evycustom-field-11",L"TESTING");
xml.UpdateAttrAt(L"custom-fields|n2",true,L"nil",L"true");
xml.UpdateChildContent(L"custom-fields|text-box",L"");
xml.UpdateAttrAt(L"custom-fields|multi-select",true,L"nil",L"true");
xml.UpdateAttrAt(L"custom-fields|custom-attachment",true,L"nil",L"true");
xml.UpdateAttrAt(L"custom-fields|custom-field-8",true,L"type",L"boolean");
xml.UpdateChildContent(L"custom-fields|custom-field-8",L"false");
xml.UpdateAttrAt(L"custom-fields|cfproattachment",true,L"nil",L"true");
xml.UpdateAttrAt(L"custom-fields|start-date1",true,L"nil",L"true");
// Adds the "Authorization: Bearer <access_token>" header.
http.put_AuthToken(L"<access_token>");
CkStringBuilderW sbRequestBody;
xml.GetXmlSb(sbRequestBody);
CkHttpResponseW *resp = http.PTextSb(L"POST",L"{}}]",sbRequestBody,L"utf-8",L"application/xml",false,false);
if (http.get_LastMethodSuccess() == false) {
wprintf(L"%s\n",http.lastErrorText());
return;
}
wprintf(L"%d\n",resp->get_StatusCode());
wprintf(L"%s\n",resp->bodyStr());
delete resp;
}
Curl Command
curl -X POST
-H "Authorization: Bearer <access_token>"
-d '<project>
<name>RR API Creation</name>
<active type="boolean">true</active>
<open type="boolean">true</open>
<description>Random Description comes from intake</description>
<start-date type="dateTime">2021-11-22T00:00:00-07:00</start-date>
<enabled-tabs type="array">
<enabled-tab>contracts</enabled-tab>
<enabled-tab>quote_requests</enabled-tab>
<enabled-tab>suppliers</enabled-tab>
</enabled-tabs>
<status>draft</status>
<template-group>
<id type="integer">1</id>
<name>Jason Test - Single Task</name>
</template-group>
<custom-fields>
<checkbox type="boolean">false</checkbox>
<cf15-analytics-test nil="true"/>
<custom-field-14 nil="true"/>
<date nil="true"/>
<projected-headcount nil="true"/>
<estimated-savings nil="true"/>
<evycustom-field-11>TESTING</evycustom-field-11>
<n2 nil="true"/>
<text-box></text-box>
<multi-select nil="true"/>
<custom-attachment nil="true"/>
<custom-field-8 type="boolean">false</custom-field-8>
<cfproattachment nil="true"/>
<start-date1 nil="true"/>
</custom-fields>
</project>'
https://domain.com/projects?fields=["id","created_at","updated_at","name","active","open","description","mention-name","start-date","project-id","status",{"template-group": ["id","name"]},{"category": ["id","name","active"]},{"commodities": ["id","name"]},{"created_by": ["id","login","email"]},{"updated_by": ["id","login","email"]},{"custom_fields": {}}]
Postman Collection Item JSON
{
"name": "Create a Project",
"request": {
"method": "POST",
"header": [
],
"body": {
"mode": "raw",
"raw": "<project>\n <name>RR API Creation</name>\n <active type=\"boolean\">true</active>\n <open type=\"boolean\">true</open>\n <description>Random Description comes from intake</description>\n <start-date type=\"dateTime\">2021-11-22T00:00:00-07:00</start-date>\n <enabled-tabs type=\"array\">\n <enabled-tab>contracts</enabled-tab>\n <enabled-tab>quote_requests</enabled-tab>\n <enabled-tab>suppliers</enabled-tab>\n </enabled-tabs>\n <status>draft</status>\n <template-group>\n <id type=\"integer\">1</id>\n <name>Jason Test - Single Task</name>\n </template-group>\n <custom-fields>\n <checkbox type=\"boolean\">false</checkbox>\n <cf15-analytics-test nil=\"true\"/>\n <custom-field-14 nil=\"true\"/>\n <date nil=\"true\"/>\n <projected-headcount nil=\"true\"/>\n <estimated-savings nil=\"true\"/>\n <evycustom-field-11>TESTING</evycustom-field-11>\n <n2 nil=\"true\"/>\n <text-box></text-box>\n <multi-select nil=\"true\"/>\n <custom-attachment nil=\"true\"/>\n <custom-field-8 type=\"boolean\">false</custom-field-8>\n <cfproattachment nil=\"true\"/>\n <start-date1 nil=\"true\"/>\n </custom-fields>\n</project>",
"options": {
"raw": {
"language": "xml"
}
}
},
"url": {
"raw": "{{URL}}/projects?fields=[\"id\",\"created_at\",\"updated_at\",\"name\",\"active\",\"open\",\"description\",\"mention-name\",\"start-date\",\"project-id\",\"status\",{\"template-group\": [\"id\",\"name\"]},{\"category\": [\"id\",\"name\",\"active\"]},{\"commodities\": [\"id\",\"name\"]},{\"created_by\": [\"id\",\"login\",\"email\"]},{\"updated_by\": [\"id\",\"login\",\"email\"]},{\"custom_fields\": {}}]",
"host": [
"{{URL}}"
],
"path": [
"projects"
],
"query": [
{
"key": "fields",
"value": "[\"id\",\"created_at\",\"updated_at\",\"name\",\"active\",\"open\",\"description\",\"mention-name\",\"start-date\",\"project-id\",\"status\",{\"template-group\": [\"id\",\"name\"]},{\"category\": [\"id\",\"name\",\"active\"]},{\"commodities\": [\"id\",\"name\"]},{\"created_by\": [\"id\",\"login\",\"email\"]},{\"updated_by\": [\"id\",\"login\",\"email\"]},{\"custom_fields\": {}}]"
}
]
}
},
"response": [
]
}