Chilkat Online Tools

Node.js / Coupa Postman Collection - OAuth - Master / Update Project

Back to Collection Items

var os = require('os');
if (os.platform() == 'win32') {  
    if (os.arch() == 'ia32') {
        var chilkat = require('@chilkat/ck-node21-win-ia32');
    } else {
        var chilkat = require('@chilkat/ck-node21-win64'); 
    }
} else if (os.platform() == 'linux') {
    if (os.arch() == 'arm') {
        var chilkat = require('@chilkat/ck-node21-arm');
    } else if (os.arch() == 'x86') {
        var chilkat = require('@chilkat/ck-node21-linux32');
    } else {
        var chilkat = require('@chilkat/ck-node21-linux64');
    }
} else if (os.platform() == 'darwin') {
    if (os.arch() == 'arm64') {
        var chilkat = require('@chilkat/ck-node21-mac-m1');
    } else {
        var chilkat = require('@chilkat/ck-node21-macosx');
    }
}


function chilkatExample() {

    // This example assumes the Chilkat API to have been previously unlocked.
    // See Global Unlock Sample for sample code.

    var http = new chilkat.Http();
    var 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>
    //     <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>learning APIs</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>
    // 

    var xml = new chilkat.Xml();
    xml.Tag = "project";
    xml.UpdateAttrAt("custom-fields|checkbox",true,"type","boolean");
    xml.UpdateChildContent("custom-fields|checkbox","false");
    xml.UpdateAttrAt("custom-fields|cf15-analytics-test",true,"nil","true");
    xml.UpdateAttrAt("custom-fields|custom-field-14",true,"nil","true");
    xml.UpdateAttrAt("custom-fields|date",true,"nil","true");
    xml.UpdateAttrAt("custom-fields|projected-headcount",true,"nil","true");
    xml.UpdateAttrAt("custom-fields|estimated-savings",true,"nil","true");
    xml.UpdateChildContent("custom-fields|evycustom-field-11","TESTING");
    xml.UpdateAttrAt("custom-fields|n2",true,"nil","true");
    xml.UpdateChildContent("custom-fields|text-box","learning APIs");
    xml.UpdateAttrAt("custom-fields|multi-select",true,"nil","true");
    xml.UpdateAttrAt("custom-fields|custom-attachment",true,"nil","true");
    xml.UpdateAttrAt("custom-fields|custom-field-8",true,"type","boolean");
    xml.UpdateChildContent("custom-fields|custom-field-8","false");
    xml.UpdateAttrAt("custom-fields|cfproattachment",true,"nil","true");
    xml.UpdateAttrAt("custom-fields|start-date1",true,"nil","true");

    // Adds the "Authorization: Bearer <access_token>" header.
    http.AuthToken = "<access_token>";

    var sbRequestBody = new chilkat.StringBuilder();
    xml.GetXmlSb(sbRequestBody);

    // resp: HttpResponse
    var resp = http.PTextSb("PUT","{}}]",sbRequestBody,"utf-8","application/xml",false,false);
    if (http.LastMethodSuccess == false) {
        console.log(http.LastErrorText);
        return;
    }

    console.log(resp.StatusCode);
    console.log(resp.BodyStr);


}

chilkatExample();

Curl Command

curl -X PUT
	-H "Authorization: Bearer <access_token>"
	-d '<project>
    <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>learning APIs</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/:id?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": "Update Project",
  "request": {
    "method": "PUT",
    "header": [
    ],
    "body": {
      "mode": "raw",
      "raw": "<project>\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>learning APIs</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/:id?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",
        ":id"
      ],
      "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\": {}}]"
        }
      ],
      "variable": [
        {
          "key": "id",
          "value": "299"
        }
      ]
    }
  },
  "response": [
  ]
}