unicodeC / APPIA API / EDIT USER PROFILE
Back to Collection Items
#include <C_CkHttpW.h>
#include <C_CkJsonObjectW.h>
#include <C_CkStringBuilderW.h>
#include <C_CkHttpResponseW.h>
void ChilkatSample(void)
{
HCkHttpW http;
BOOL success;
HCkJsonObjectW json;
HCkStringBuilderW sbRequestBody;
HCkHttpResponseW resp;
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
http = CkHttpW_Create();
// 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"
// }
json = CkJsonObjectW_Create();
CkJsonObjectW_UpdateString(json,L"address",L"ado ekiti");
CkJsonObjectW_UpdateString(json,L"dob",L"23-5-2018");
CkJsonObjectW_UpdateString(json,L"nnok",L"adeolu");
CkJsonObjectW_UpdateString(json,L"occupation",L"engineer");
CkJsonObjectW_UpdateString(json,L"aonok",L"balogun street");
CkJsonObjectW_UpdateInt(json,L"ponok",234);
CkJsonObjectW_UpdateString(json,L"rwnok",L"son");
CkHttpW_SetRequestHeader(http,L"Content-Type",L"application/json");
// Adds the "Authorization: Bearer {{auth}}" header.
CkHttpW_putAuthToken(http,L"{{auth}}");
sbRequestBody = CkStringBuilderW_Create();
CkJsonObjectW_EmitSb(json,sbRequestBody);
resp = CkHttpW_PTextSb(http,L"PUT",L"https://domain.com/profile/",sbRequestBody,L"utf-8",L"application/json",FALSE,FALSE);
if (CkHttpW_getLastMethodSuccess(http) == FALSE) {
wprintf(L"%s\n",CkHttpW_lastErrorText(http));
CkHttpW_Dispose(http);
CkJsonObjectW_Dispose(json);
CkStringBuilderW_Dispose(sbRequestBody);
return;
}
wprintf(L"%d\n",CkHttpResponseW_getStatusCode(resp));
wprintf(L"%s\n",CkHttpResponseW_bodyStr(resp));
CkHttpResponseW_Dispose(resp);
CkHttpW_Dispose(http);
CkJsonObjectW_Dispose(json);
CkStringBuilderW_Dispose(sbRequestBody);
}
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": [
]
}