Back to Collection Items
#include <CkHttp.h>
#include <CkStringBuilder.h>
void ChilkatSample(void)
{
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
CkHttp http;
bool success;
// Adds the "Authorization: Bearer {{token}}" header.
http.put_AuthToken("{{token}}");
CkStringBuilder sbResponseBody;
success = http.QuickGetSb("https://domain.com/accounts/api/profile",sbResponseBody);
if (success == false) {
std::cout << http.lastErrorText() << "\r\n";
return;
}
std::cout << "Response status code = " << http.get_LastStatus() << "\r\n";
std::cout << sbResponseBody.getAsString() << "\r\n";
}
Curl Command
curl -X GET
-H "Authorization: Bearer {{token}}"
https://domain.com/accounts/api/profile
Postman Collection Item JSON
{
"name": "Get profile information",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = JSON.parse(responseBody);\r",
"pm.environment.set(\"organization_id\", data.organizationId);"
],
"type": "text/javascript"
}
}
],
"request": {
"method": "GET",
"header": [
{
"key": "Authorization",
"value": "Bearer {{token}}",
"type": "text"
}
],
"url": {
"raw": "{{url}}/accounts/api/profile",
"host": [
"{{url}}"
],
"path": [
"accounts",
"api",
"profile"
]
}
},
"response": [
]
}