Chilkat Online Tools

Android / Salesforce Platform APIs / Prediction definitions

Back to Collection Items

// Important: Don't forget to include the call to System.loadLibrary
// as shown at the bottom of this code sample.
package com.test;

import android.app.Activity;
import com.chilkatsoft.*;

import android.widget.TextView;
import android.os.Bundle;

public class SimpleActivity extends Activity {

  private static final String TAG = "Chilkat";

  // Called when the activity is first created.
  @Override
  public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);

    // This example assumes the Chilkat API to have been previously unlocked.
    // See Global Unlock Sample for sample code.

    CkHttp http = new CkHttp();
    boolean success;

    // Adds the "Authorization: Bearer <access_token>" header.
    http.put_AuthToken("<access_token>");

    CkStringBuilder sbResponseBody = new CkStringBuilder();
    success = http.QuickGetSb("https://domain.com/services/data/v{{version}}/smartdatadiscovery/predictionDefinitions",sbResponseBody);
    if (success == false) {
        Log.i(TAG, http.lastErrorText());
        return;
        }

    CkJsonObject jResp = new CkJsonObject();
    jResp.LoadSb(sbResponseBody);
    jResp.put_EmitCompact(false);

    Log.i(TAG, "Response Body:");
    Log.i(TAG, jResp.emit());

    int respStatusCode = http.get_LastStatus();
    Log.i(TAG, "Response Status Code = " + String.valueOf(respStatusCode));
    if (respStatusCode >= 400) {
        Log.i(TAG, "Response Header:");
        Log.i(TAG, http.lastHeader());
        Log.i(TAG, "Failed.");
        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

    int countOfActiveModels;
    int countOfModels;
    String Id;
    String Name;
    String ProfilePhotoUrl;
    String createdDate;
    String id;
    String label;
    String lastModifiedById;
    String lastModifiedByName;
    String lastModifiedByProfilePhotoUrl;
    String lastModifiedDate;
    String modelsUrl;
    String name;
    String Goal;
    String Label;
    String outcomeName;
    String predictionType;
    String status;

    String nextPageUrl = jResp.stringOf("nextPageUrl");
    int totalSize = jResp.IntOf("totalSize");
    String url = jResp.stringOf("url");
    int i = 0;
    int count_i = jResp.SizeOfArray("predictionDefinitions");
    while (i < count_i) {
        jResp.put_I(i);
        countOfActiveModels = jResp.IntOf("predictionDefinitions[i].countOfActiveModels");
        countOfModels = jResp.IntOf("predictionDefinitions[i].countOfModels");
        Id = jResp.stringOf("predictionDefinitions[i].createdBy.id");
        Name = jResp.stringOf("predictionDefinitions[i].createdBy.name");
        ProfilePhotoUrl = jResp.stringOf("predictionDefinitions[i].createdBy.profilePhotoUrl");
        createdDate = jResp.stringOf("predictionDefinitions[i].createdDate");
        id = jResp.stringOf("predictionDefinitions[i].id");
        label = jResp.stringOf("predictionDefinitions[i].label");
        lastModifiedById = jResp.stringOf("predictionDefinitions[i].lastModifiedBy.id");
        lastModifiedByName = jResp.stringOf("predictionDefinitions[i].lastModifiedBy.name");
        lastModifiedByProfilePhotoUrl = jResp.stringOf("predictionDefinitions[i].lastModifiedBy.profilePhotoUrl");
        lastModifiedDate = jResp.stringOf("predictionDefinitions[i].lastModifiedDate");
        modelsUrl = jResp.stringOf("predictionDefinitions[i].modelsUrl");
        name = jResp.stringOf("predictionDefinitions[i].name");
        Goal = jResp.stringOf("predictionDefinitions[i].outcome.goal");
        Label = jResp.stringOf("predictionDefinitions[i].outcome.label");
        outcomeName = jResp.stringOf("predictionDefinitions[i].outcome.name");
        predictionType = jResp.stringOf("predictionDefinitions[i].predictionType");
        status = jResp.stringOf("predictionDefinitions[i].status");
        url = jResp.stringOf("predictionDefinitions[i].url");
        i = i + 1;
        }


  }

  static {
      System.loadLibrary("chilkat");

      // Note: If the incorrect library name is passed to System.loadLibrary,
      // then you will see the following error message at application startup:
      //"The application <your-application-name> has stopped unexpectedly. Please try again."
  }
}

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}"
    }
  ]
}