unicodeC / APPIA API / VERIFY IF USER EXIST
Back to Collection Items
#include <C_CkHttpW.h>
#include <C_CkJsonObjectW.h>
#include <C_CkHttpResponseW.h>
void ChilkatSample(void)
{
HCkHttpW http;
BOOL success;
HCkJsonObjectW json;
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.
// {
// "phone": "07068387120",
// "email": "tosinolugbenga@gmail.com"
// }
json = CkJsonObjectW_Create();
CkJsonObjectW_UpdateString(json,L"phone",L"07068387120");
CkJsonObjectW_UpdateString(json,L"email",L"tosinolugbenga@gmail.com");
CkHttpW_SetRequestHeader(http,L"Content-Type",L"application/json");
resp = CkHttpW_PostJson3(http,L"https://domain.com/users/verify_user",L"application/json",json);
if (CkHttpW_getLastMethodSuccess(http) == FALSE) {
wprintf(L"%s\n",CkHttpW_lastErrorText(http));
CkHttpW_Dispose(http);
CkJsonObjectW_Dispose(json);
return;
}
wprintf(L"%d\n",CkHttpResponseW_getStatusCode(resp));
wprintf(L"%s\n",CkHttpResponseW_bodyStr(resp));
CkHttpResponseW_Dispose(resp);
CkHttpW_Dispose(http);
CkJsonObjectW_Dispose(json);
}
Curl Command
curl -X POST
-H "Content-Type: application/json"
-d '{
"phone" : "07068387120",
"email":"tosinolugbenga@gmail.com"
}'
https://domain.com/users/verify_user
Postman Collection Item JSON
{
"name": "VERIFY IF USER EXIST",
"request": {
"method": "POST",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "{\n\"phone\" : \"07068387120\",\t\n\"email\":\"tosinolugbenga@gmail.com\"\n}"
},
"url": {
"raw": "{{url}}/users/verify_user",
"host": [
"{{url}}"
],
"path": [
"users",
"verify_user"
]
},
"description": "Verify if user has an investa.ng account already, send email and phone number.\nif success is true, it means user exist"
},
"response": [
]
}