Back to Collection Items
#include <C_CkHttpW.h>
#include <C_CkStringBuilderW.h>
#include <C_CkJsonObjectW.h>
void ChilkatSample(void)
{
HCkHttpW http;
BOOL success;
HCkStringBuilderW sbResponseBody;
HCkJsonObjectW jResp;
int respStatusCode;
int countOfActiveModels;
int countOfModels;
const wchar_t *Id;
const wchar_t *Name;
const wchar_t *ProfilePhotoUrl;
const wchar_t *createdDate;
const wchar_t *id;
const wchar_t *label;
const wchar_t *lastModifiedById;
const wchar_t *lastModifiedByName;
const wchar_t *lastModifiedByProfilePhotoUrl;
const wchar_t *lastModifiedDate;
const wchar_t *modelsUrl;
const wchar_t *name;
const wchar_t *Goal;
const wchar_t *Label;
const wchar_t *outcomeName;
const wchar_t *predictionType;
const wchar_t *status;
const wchar_t *nextPageUrl;
int totalSize;
const wchar_t *url;
int i;
int count_i;
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
http = CkHttpW_Create();
// Adds the "Authorization: Bearer <access_token>" header.
CkHttpW_putAuthToken(http,L"<access_token>");
sbResponseBody = CkStringBuilderW_Create();
success = CkHttpW_QuickGetSb(http,L"https://domain.com/services/data/v{{version}}/smartdatadiscovery/predictionDefinitions",sbResponseBody);
if (success == FALSE) {
wprintf(L"%s\n",CkHttpW_lastErrorText(http));
CkHttpW_Dispose(http);
CkStringBuilderW_Dispose(sbResponseBody);
return;
}
jResp = CkJsonObjectW_Create();
CkJsonObjectW_LoadSb(jResp,sbResponseBody);
CkJsonObjectW_putEmitCompact(jResp,FALSE);
wprintf(L"Response Body:\n");
wprintf(L"%s\n",CkJsonObjectW_emit(jResp));
respStatusCode = CkHttpW_getLastStatus(http);
wprintf(L"Response Status Code = %d\n",respStatusCode);
if (respStatusCode >= 400) {
wprintf(L"Response Header:\n");
wprintf(L"%s\n",CkHttpW_lastHeader(http));
wprintf(L"Failed.\n");
CkHttpW_Dispose(http);
CkStringBuilderW_Dispose(sbResponseBody);
CkJsonObjectW_Dispose(jResp);
return;
}
// Sample JSON response:
// (Sample code for parsing the JSON response is shown below)
// {
// "nextPageUrl": null,
// "predictionDefinitions": [
// {
// "countOfActiveModels": 1,
// "countOfModels": 1,
// "createdBy": {
// "id": "0055Y00000DWwAIQA1",
// "name": "Philippe Ozil",
// "profilePhotoUrl": "https://crm-analytics-deorg-dev-ed--c.documentforce.com/profilephoto/005/T"
// },
// "createdDate": "2021-03-04T13:37:02.000Z",
// "id": "1OR5Y0000010ws8WAA",
// "label": "Sales_per_Customer",
// "lastModifiedBy": {
// "id": "0055Y00000DWwAIQA1",
// "name": "Philippe Ozil",
// "profilePhotoUrl": "https://crm-analytics-deorg-dev-ed--c.documentforce.com/profilephoto/005/T"
// },
// "lastModifiedDate": "2021-03-04T13:37:02.000Z",
// "modelsUrl": "/services/data/v51.0/smartdatadiscovery/predictiondefinitions/1OR5Y0000010ws8WAA/models",
// "name": "Sales_per_Customer",
// "outcome": {
// "goal": "Maximize",
// "label": "Sales per Customer",
// "name": "Sales_per_Customer"
// },
// "predictionType": "Regression",
// "status": "Enabled",
// "url": "/services/data/v51.0/smartdatadiscovery/predictiondefinitions/1OR5Y0000010ws8WAA"
// }
// ],
// "totalSize": 1,
// "url": "/services/data/v51.0/smartdatadiscovery/predictiondefinitions?pageSize=25"
// }
// Sample code for parsing the JSON response...
// Use this online tool to generate parsing code from sample JSON: Generate JSON Parsing Code
// Chilkat functions returning "const char *" return a pointer to temporary internal memory owned and managed by Chilkat.
nextPageUrl = CkJsonObjectW_stringOf(jResp,L"nextPageUrl");
totalSize = CkJsonObjectW_IntOf(jResp,L"totalSize");
url = CkJsonObjectW_stringOf(jResp,L"url");
i = 0;
count_i = CkJsonObjectW_SizeOfArray(jResp,L"predictionDefinitions");
while (i < count_i) {
CkJsonObjectW_putI(jResp,i);
countOfActiveModels = CkJsonObjectW_IntOf(jResp,L"predictionDefinitions[i].countOfActiveModels");
countOfModels = CkJsonObjectW_IntOf(jResp,L"predictionDefinitions[i].countOfModels");
Id = CkJsonObjectW_stringOf(jResp,L"predictionDefinitions[i].createdBy.id");
Name = CkJsonObjectW_stringOf(jResp,L"predictionDefinitions[i].createdBy.name");
ProfilePhotoUrl = CkJsonObjectW_stringOf(jResp,L"predictionDefinitions[i].createdBy.profilePhotoUrl");
createdDate = CkJsonObjectW_stringOf(jResp,L"predictionDefinitions[i].createdDate");
id = CkJsonObjectW_stringOf(jResp,L"predictionDefinitions[i].id");
label = CkJsonObjectW_stringOf(jResp,L"predictionDefinitions[i].label");
lastModifiedById = CkJsonObjectW_stringOf(jResp,L"predictionDefinitions[i].lastModifiedBy.id");
lastModifiedByName = CkJsonObjectW_stringOf(jResp,L"predictionDefinitions[i].lastModifiedBy.name");
lastModifiedByProfilePhotoUrl = CkJsonObjectW_stringOf(jResp,L"predictionDefinitions[i].lastModifiedBy.profilePhotoUrl");
lastModifiedDate = CkJsonObjectW_stringOf(jResp,L"predictionDefinitions[i].lastModifiedDate");
modelsUrl = CkJsonObjectW_stringOf(jResp,L"predictionDefinitions[i].modelsUrl");
name = CkJsonObjectW_stringOf(jResp,L"predictionDefinitions[i].name");
Goal = CkJsonObjectW_stringOf(jResp,L"predictionDefinitions[i].outcome.goal");
Label = CkJsonObjectW_stringOf(jResp,L"predictionDefinitions[i].outcome.label");
outcomeName = CkJsonObjectW_stringOf(jResp,L"predictionDefinitions[i].outcome.name");
predictionType = CkJsonObjectW_stringOf(jResp,L"predictionDefinitions[i].predictionType");
status = CkJsonObjectW_stringOf(jResp,L"predictionDefinitions[i].status");
url = CkJsonObjectW_stringOf(jResp,L"predictionDefinitions[i].url");
i = i + 1;
}
CkHttpW_Dispose(http);
CkStringBuilderW_Dispose(sbResponseBody);
CkJsonObjectW_Dispose(jResp);
}
Curl Command
curl -X GET
-H "Authorization: Bearer <access_token>"
https://domain.com/services/data/v{{version}}/smartdatadiscovery/predictionDefinitions
Postman Collection Item JSON
{
"name": "Prediction definitions",
"request": {
"method": "GET",
"header": [
],
"url": {
"raw": "{{_endpoint}}/services/data/v{{version}}/smartdatadiscovery/predictionDefinitions",
"host": [
"{{_endpoint}}"
],
"path": [
"services",
"data",
"v{{version}}",
"smartdatadiscovery",
"predictionDefinitions"
]
},
"description": "Get available prediction definitions."
},
"response": [
{
"name": "Prediction definitions",
"originalRequest": {
"method": "GET",
"header": [
],
"url": {
"raw": "{{_endpoint}}/services/data/v{{version}}/smartdatadiscovery/predictionDefinitions",
"host": [
"{{_endpoint}}"
],
"path": [
"services",
"data",
"v{{version}}",
"smartdatadiscovery",
"predictionDefinitions"
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Date",
"value": "Thu, 04 Mar 2021 13:45:15 GMT"
},
{
"key": "Strict-Transport-Security",
"value": "max-age=31536002; includeSubDomains"
},
{
"key": "Expect-CT",
"value": "max-age=86400, report-uri=\"https://a.forcesslreports.com/Expect-CT-report/00D5Y000001crJvm\""
},
{
"key": "X-Content-Type-Options",
"value": "nosniff"
},
{
"key": "X-XSS-Protection",
"value": "1; mode=block"
},
{
"key": "X-Robots-Tag",
"value": "none"
},
{
"key": "Cache-Control",
"value": "no-cache,must-revalidate,max-age=0,no-store,private"
},
{
"key": "Content-Type",
"value": "application/json;charset=UTF-8"
},
{
"key": "Vary",
"value": "Accept-Encoding"
},
{
"key": "Content-Encoding",
"value": "gzip"
},
{
"key": "Transfer-Encoding",
"value": "chunked"
}
],
"cookie": [
],
"body": "{\n \"nextPageUrl\": null,\n \"predictionDefinitions\": [\n {\n \"countOfActiveModels\": 1,\n \"countOfModels\": 1,\n \"createdBy\": {\n \"id\": \"0055Y00000DWwAIQA1\",\n \"name\": \"Philippe Ozil\",\n \"profilePhotoUrl\": \"https://crm-analytics-deorg-dev-ed--c.documentforce.com/profilephoto/005/T\"\n },\n \"createdDate\": \"2021-03-04T13:37:02.000Z\",\n \"id\": \"1OR5Y0000010ws8WAA\",\n \"label\": \"Sales_per_Customer\",\n \"lastModifiedBy\": {\n \"id\": \"0055Y00000DWwAIQA1\",\n \"name\": \"Philippe Ozil\",\n \"profilePhotoUrl\": \"https://crm-analytics-deorg-dev-ed--c.documentforce.com/profilephoto/005/T\"\n },\n \"lastModifiedDate\": \"2021-03-04T13:37:02.000Z\",\n \"modelsUrl\": \"/services/data/v51.0/smartdatadiscovery/predictiondefinitions/1OR5Y0000010ws8WAA/models\",\n \"name\": \"Sales_per_Customer\",\n \"outcome\": {\n \"goal\": \"Maximize\",\n \"label\": \"Sales per Customer\",\n \"name\": \"Sales_per_Customer\"\n },\n \"predictionType\": \"Regression\",\n \"status\": \"Enabled\",\n \"url\": \"/services/data/v51.0/smartdatadiscovery/predictiondefinitions/1OR5Y0000010ws8WAA\"\n }\n ],\n \"totalSize\": 1,\n \"url\": \"/services/data/v51.0/smartdatadiscovery/predictiondefinitions?pageSize=25\"\n}"
}
]
}