Node.js / APPIA API / EDIT USER PROFILE
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 JSON: Generate Code to Create JSON
// The following JSON is sent in the request body.
// {
// "address": "ado ekiti",
// "dob": "23-5-2018",
// "nnok": "adeolu",
// "occupation": "engineer",
// "aonok": "balogun street",
// "ponok": 234,
// "rwnok": "son"
// }
var json = new chilkat.JsonObject();
json.UpdateString("address","ado ekiti");
json.UpdateString("dob","23-5-2018");
json.UpdateString("nnok","adeolu");
json.UpdateString("occupation","engineer");
json.UpdateString("aonok","balogun street");
json.UpdateInt("ponok",234);
json.UpdateString("rwnok","son");
http.SetRequestHeader("Content-Type","application/json");
// Adds the "Authorization: Bearer {{auth}}" header.
http.AuthToken = "{{auth}}";
var sbRequestBody = new chilkat.StringBuilder();
json.EmitSb(sbRequestBody);
// resp: HttpResponse
var resp = http.PTextSb("PUT","https://domain.com/profile/",sbRequestBody,"utf-8","application/json",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 "Content-Type: application/json"
-H "Authorization: Bearer {{auth}}"
-d '{
"address" : "ado ekiti",
"dob" : "23-5-2018",
"nnok" : "adeolu",
"occupation":"engineer",
"aonok" : "balogun street",
"ponok" : 234,
"rwnok" : "son"
}'
https://domain.com/profile/
Postman Collection Item JSON
{
"name": "EDIT USER PROFILE",
"request": {
"method": "PUT",
"header": [
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Bearer {{auth}}"
}
],
"body": {
"mode": "raw",
"raw": " \t\t\t{\r\n \"address\" : \"ado ekiti\",\r\n \"dob\" : \"23-5-2018\",\r\n \"nnok\" : \"adeolu\",\r\n \"occupation\":\"engineer\",\r\n \"aonok\" : \"balogun street\",\r\n \"ponok\" : 234,\r\n \"rwnok\" : \"son\"\r\n \t\t\t}"
},
"url": {
"raw": "{{url}}/profile/",
"host": [
"{{url}}"
],
"path": [
"profile",
""
]
},
"description": "User profile update"
},
"response": [
]
}