Chilkat Online Tools

Objective-C / Coupa Postman Collection - OAuth - Master / Create a Project

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"?>
// <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>
// 

CkoXml *xml = [[CkoXml alloc] init];
xml.Tag = @"project";
[xml UpdateChildContent: @"name" value: @"RR API Creation"];
[xml UpdateAttrAt: @"active" autoCreate: YES attrName: @"type" attrValue: @"boolean"];
[xml UpdateChildContent: @"active" value: @"true"];
[xml UpdateAttrAt: @"open" autoCreate: YES attrName: @"type" attrValue: @"boolean"];
[xml UpdateChildContent: @"open" value: @"true"];
[xml UpdateChildContent: @"description" value: @"Random Description comes from intake"];
[xml UpdateAttrAt: @"start-date" autoCreate: YES attrName: @"type" attrValue: @"dateTime"];
[xml UpdateChildContent: @"start-date" value: @"2021-11-22T00:00:00-07:00"];
[xml UpdateAttrAt: @"enabled-tabs" autoCreate: YES attrName: @"type" attrValue: @"array"];
[xml UpdateChildContent: @"enabled-tabs|enabled-tab" value: @"contracts"];
[xml UpdateChildContent: @"enabled-tabs|enabled-tab[1]" value: @"quote_requests"];
[xml UpdateChildContent: @"enabled-tabs|enabled-tab[2]" value: @"suppliers"];
[xml UpdateChildContent: @"status" value: @"draft"];
[xml UpdateAttrAt: @"template-group|id" autoCreate: YES attrName: @"type" attrValue: @"integer"];
[xml UpdateChildContentInt: @"template-group|id" value: [NSNumber numberWithInt: 1]];
[xml UpdateChildContent: @"template-group|name" value: @"Jason Test - Single Task"];
[xml UpdateAttrAt: @"custom-fields|checkbox" autoCreate: YES attrName: @"type" attrValue: @"boolean"];
[xml UpdateChildContent: @"custom-fields|checkbox" value: @"false"];
[xml UpdateAttrAt: @"custom-fields|cf15-analytics-test" autoCreate: YES attrName: @"nil" attrValue: @"true"];
[xml UpdateAttrAt: @"custom-fields|custom-field-14" autoCreate: YES attrName: @"nil" attrValue: @"true"];
[xml UpdateAttrAt: @"custom-fields|date" autoCreate: YES attrName: @"nil" attrValue: @"true"];
[xml UpdateAttrAt: @"custom-fields|projected-headcount" autoCreate: YES attrName: @"nil" attrValue: @"true"];
[xml UpdateAttrAt: @"custom-fields|estimated-savings" autoCreate: YES attrName: @"nil" attrValue: @"true"];
[xml UpdateChildContent: @"custom-fields|evycustom-field-11" value: @"TESTING"];
[xml UpdateAttrAt: @"custom-fields|n2" autoCreate: YES attrName: @"nil" attrValue: @"true"];
[xml UpdateChildContent: @"custom-fields|text-box" value: @""];
[xml UpdateAttrAt: @"custom-fields|multi-select" autoCreate: YES attrName: @"nil" attrValue: @"true"];
[xml UpdateAttrAt: @"custom-fields|custom-attachment" autoCreate: YES attrName: @"nil" attrValue: @"true"];
[xml UpdateAttrAt: @"custom-fields|custom-field-8" autoCreate: YES attrName: @"type" attrValue: @"boolean"];
[xml UpdateChildContent: @"custom-fields|custom-field-8" value: @"false"];
[xml UpdateAttrAt: @"custom-fields|cfproattachment" autoCreate: YES attrName: @"nil" attrValue: @"true"];
[xml UpdateAttrAt: @"custom-fields|start-date1" autoCreate: YES attrName: @"nil" attrValue: @"true"];

// 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 '<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": [
  ]
}