Chilkat Online Tools

unicodeC / Salesforce Platform APIs / Get List View Chart Actions

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;
    const wchar_t *actionListContext;
    const wchar_t *actionTarget;
    const wchar_t *actionTargetType;
    const wchar_t *apiName;
    const wchar_t *externalId;
    const wchar_t *iconUrl;
    const wchar_t *id;
    const wchar_t *isMassAction;
    const wchar_t *label;
    const wchar_t *lwcComponent;
    const wchar_t *primaryColor;
    const wchar_t *relatedListRecordId;
    const wchar_t *relatedSourceObject;
    const wchar_t *section;
    const wchar_t *sourceObject;
    const wchar_t *subtype;
    const wchar_t *targetObject;
    const wchar_t *targetUrl;
    const wchar_t *v_type;
    const wchar_t *v_Url;
    const wchar_t *eTag;
    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}}/ui-api/actions/list-view-chart/:SOBJECT_API_NAME",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)

    // {
    //   "actions": {
    //     "ListViewChartInstance": {
    //       "actions": [
    //         {
    //           "actionListContext": "ObjectHomeChart",
    //           "actionTarget": null,
    //           "actionTargetType": null,
    //           "apiName": "NewObjectHomeChartAction",
    //           "externalId": "00D58000000arpq:ListViewChartInstance::ObjectHomeChart:Desktop:StandardButton:NewObjectHomeChartAction",
    //           "iconUrl": "https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_custom19_120.png",
    //           "id": "0JV4H0000138090WAA",
    //           "isMassAction": "false",
    //           "label": "New Chart",
    //           "lwcComponent": null,
    //           "primaryColor": null,
    //           "relatedListRecordId": null,
    //           "relatedSourceObject": null,
    //           "section": "Page",
    //           "sourceObject": "ListViewChartInstance",
    //           "subtype": null,
    //           "targetObject": "ListViewChart",
    //           "targetUrl": null,
    //           "type": "StandardButton"
    //         },
    //         {
    //           "actionListContext": "ObjectHomeChart",
    //           "actionTarget": null,
    //           "actionTargetType": null,
    //           "apiName": "EditObjectHomeChartAction",
    //           "externalId": "00D58000000arpq:ListViewChartInstance::ObjectHomeChart:Desktop:StandardButton:EditObjectHomeChartAction",
    //           "iconUrl": "https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_custom19_120.png",
    //           "id": "0JV4H0000138091WAA",
    //           "isMassAction": "false",
    //           "label": "Edit Chart",
    //           "lwcComponent": null,
    //           "primaryColor": null,
    //           "relatedListRecordId": null,
    //           "relatedSourceObject": null,
    //           "section": "Page",
    //           "sourceObject": "ListViewChartInstance",
    //           "subtype": null,
    //           "targetObject": "ListViewChart",
    //           "targetUrl": null,
    //           "type": "StandardButton"
    //         },
    //         {
    //           "actionListContext": "ObjectHomeChart",
    //           "actionTarget": null,
    //           "actionTargetType": null,
    //           "apiName": "DeleteObjectHomeChartAction",
    //           "externalId": "00D58000000arpq:ListViewChartInstance::ObjectHomeChart:Desktop:StandardButton:DeleteObjectHomeChartAction",
    //           "iconUrl": "https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_custom19_120.png",
    //           "id": "0JV4H0000138092WAA",
    //           "isMassAction": "false",
    //           "label": "Delete Chart",
    //           "lwcComponent": null,
    //           "primaryColor": null,
    //           "relatedListRecordId": null,
    //           "relatedSourceObject": null,
    //           "section": "Page",
    //           "sourceObject": "ListViewChartInstance",
    //           "subtype": null,
    //           "targetObject": "ListViewChart",
    //           "targetUrl": null,
    //           "type": "StandardButton"
    //         }
    //       ],
    //       "links": [
    //       ],
    //       "url": "/services/data/v58.0/ui-api/actions/list-view-chart/ListViewChartInstance"
    //     }
    //   },
    //   "eTag": "60c273c4ba34efcc645bd0ce249c8cd4",
    //   "url": "/services/data/v58.0/ui-api/actions/list-view-chart/ListViewChartInstance"
    // }

    // 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.

    v_Url = CkJsonObjectW_stringOf(jResp,L"actions.ListViewChartInstance.url");
    eTag = CkJsonObjectW_stringOf(jResp,L"eTag");
    url = CkJsonObjectW_stringOf(jResp,L"url");
    i = 0;
    count_i = CkJsonObjectW_SizeOfArray(jResp,L"actions.ListViewChartInstance.actions");
    while (i < count_i) {
        CkJsonObjectW_putI(jResp,i);
        actionListContext = CkJsonObjectW_stringOf(jResp,L"actions.ListViewChartInstance.actions[i].actionListContext");
        actionTarget = CkJsonObjectW_stringOf(jResp,L"actions.ListViewChartInstance.actions[i].actionTarget");
        actionTargetType = CkJsonObjectW_stringOf(jResp,L"actions.ListViewChartInstance.actions[i].actionTargetType");
        apiName = CkJsonObjectW_stringOf(jResp,L"actions.ListViewChartInstance.actions[i].apiName");
        externalId = CkJsonObjectW_stringOf(jResp,L"actions.ListViewChartInstance.actions[i].externalId");
        iconUrl = CkJsonObjectW_stringOf(jResp,L"actions.ListViewChartInstance.actions[i].iconUrl");
        id = CkJsonObjectW_stringOf(jResp,L"actions.ListViewChartInstance.actions[i].id");
        isMassAction = CkJsonObjectW_stringOf(jResp,L"actions.ListViewChartInstance.actions[i].isMassAction");
        label = CkJsonObjectW_stringOf(jResp,L"actions.ListViewChartInstance.actions[i].label");
        lwcComponent = CkJsonObjectW_stringOf(jResp,L"actions.ListViewChartInstance.actions[i].lwcComponent");
        primaryColor = CkJsonObjectW_stringOf(jResp,L"actions.ListViewChartInstance.actions[i].primaryColor");
        relatedListRecordId = CkJsonObjectW_stringOf(jResp,L"actions.ListViewChartInstance.actions[i].relatedListRecordId");
        relatedSourceObject = CkJsonObjectW_stringOf(jResp,L"actions.ListViewChartInstance.actions[i].relatedSourceObject");
        section = CkJsonObjectW_stringOf(jResp,L"actions.ListViewChartInstance.actions[i].section");
        sourceObject = CkJsonObjectW_stringOf(jResp,L"actions.ListViewChartInstance.actions[i].sourceObject");
        subtype = CkJsonObjectW_stringOf(jResp,L"actions.ListViewChartInstance.actions[i].subtype");
        targetObject = CkJsonObjectW_stringOf(jResp,L"actions.ListViewChartInstance.actions[i].targetObject");
        targetUrl = CkJsonObjectW_stringOf(jResp,L"actions.ListViewChartInstance.actions[i].targetUrl");
        v_type = CkJsonObjectW_stringOf(jResp,L"actions.ListViewChartInstance.actions[i].type");
        i = i + 1;
    }

    i = 0;
    count_i = CkJsonObjectW_SizeOfArray(jResp,L"actions.ListViewChartInstance.links");
    while (i < count_i) {
        CkJsonObjectW_putI(jResp,i);
        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}}/ui-api/actions/list-view-chart/:SOBJECT_API_NAME

Postman Collection Item JSON

{
  "name": "Get List View Chart Actions",
  "event": [
    {
      "listen": "prerequest",
      "script": {
        "exec": [
          ""
        ],
        "type": "text/javascript"
      }
    }
  ],
  "protocolProfileBehavior": {
    "disableBodyPruning": true
  },
  "request": {
    "method": "GET",
    "header": [
    ],
    "body": {
      "mode": "raw",
      "raw": ""
    },
    "url": {
      "raw": "{{_endpoint}}/services/data/v{{version}}/ui-api/actions/list-view-chart/:SOBJECT_API_NAME",
      "host": [
        "{{_endpoint}}"
      ],
      "path": [
        "services",
        "data",
        "v{{version}}",
        "ui-api",
        "actions",
        "list-view-chart",
        ":SOBJECT_API_NAME"
      ],
      "variable": [
        {
          "key": "SOBJECT_API_NAME",
          "value": "ListViewChartInstance",
          "description": "Currently, only `ListViewChartInstance` is valid."
        }
      ]
    },
    "description": "Get the record actions on list views."
  },
  "response": [
    {
      "name": "Get List View Chart Actions",
      "originalRequest": {
        "method": "GET",
        "header": [
        ],
        "body": {
          "mode": "raw",
          "raw": ""
        },
        "url": {
          "raw": "{{_endpoint}}/services/data/v{{version}}/ui-api/actions/list-view-chart/:SOBJECT_API_NAME",
          "host": [
            "{{_endpoint}}"
          ],
          "path": [
            "services",
            "data",
            "v{{version}}",
            "ui-api",
            "actions",
            "list-view-chart",
            ":SOBJECT_API_NAME"
          ],
          "variable": [
            {
              "key": "SOBJECT_API_NAME",
              "value": "ListViewChartInstance",
              "description": "Currently, only `ListViewChartInstance` is valid."
            }
          ]
        }
      },
      "status": "OK",
      "code": 200,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "Date",
          "value": "Fri, 06 Oct 2023 11:41:26 GMT"
        },
        {
          "key": "Strict-Transport-Security",
          "value": "max-age=63072000; includeSubDomains"
        },
        {
          "key": "X-Content-Type-Options",
          "value": "nosniff"
        },
        {
          "key": "X-Robots-Tag",
          "value": "none"
        },
        {
          "key": "Cache-Control",
          "value": "no-cache,must-revalidate,max-age=0,no-store,private"
        },
        {
          "key": "ETag",
          "value": "\"60c273c4ba34efcc645bd0ce249c8cd4--gzip\""
        },
        {
          "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    \"actions\": {\n        \"ListViewChartInstance\": {\n            \"actions\": [\n                {\n                    \"actionListContext\": \"ObjectHomeChart\",\n                    \"actionTarget\": null,\n                    \"actionTargetType\": null,\n                    \"apiName\": \"NewObjectHomeChartAction\",\n                    \"externalId\": \"00D58000000arpq:ListViewChartInstance::ObjectHomeChart:Desktop:StandardButton:NewObjectHomeChartAction\",\n                    \"iconUrl\": \"https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_custom19_120.png\",\n                    \"id\": \"0JV4H0000138090WAA\",\n                    \"isMassAction\": \"false\",\n                    \"label\": \"New Chart\",\n                    \"lwcComponent\": null,\n                    \"primaryColor\": null,\n                    \"relatedListRecordId\": null,\n                    \"relatedSourceObject\": null,\n                    \"section\": \"Page\",\n                    \"sourceObject\": \"ListViewChartInstance\",\n                    \"subtype\": null,\n                    \"targetObject\": \"ListViewChart\",\n                    \"targetUrl\": null,\n                    \"type\": \"StandardButton\"\n                },\n                {\n                    \"actionListContext\": \"ObjectHomeChart\",\n                    \"actionTarget\": null,\n                    \"actionTargetType\": null,\n                    \"apiName\": \"EditObjectHomeChartAction\",\n                    \"externalId\": \"00D58000000arpq:ListViewChartInstance::ObjectHomeChart:Desktop:StandardButton:EditObjectHomeChartAction\",\n                    \"iconUrl\": \"https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_custom19_120.png\",\n                    \"id\": \"0JV4H0000138091WAA\",\n                    \"isMassAction\": \"false\",\n                    \"label\": \"Edit Chart\",\n                    \"lwcComponent\": null,\n                    \"primaryColor\": null,\n                    \"relatedListRecordId\": null,\n                    \"relatedSourceObject\": null,\n                    \"section\": \"Page\",\n                    \"sourceObject\": \"ListViewChartInstance\",\n                    \"subtype\": null,\n                    \"targetObject\": \"ListViewChart\",\n                    \"targetUrl\": null,\n                    \"type\": \"StandardButton\"\n                },\n                {\n                    \"actionListContext\": \"ObjectHomeChart\",\n                    \"actionTarget\": null,\n                    \"actionTargetType\": null,\n                    \"apiName\": \"DeleteObjectHomeChartAction\",\n                    \"externalId\": \"00D58000000arpq:ListViewChartInstance::ObjectHomeChart:Desktop:StandardButton:DeleteObjectHomeChartAction\",\n                    \"iconUrl\": \"https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_custom19_120.png\",\n                    \"id\": \"0JV4H0000138092WAA\",\n                    \"isMassAction\": \"false\",\n                    \"label\": \"Delete Chart\",\n                    \"lwcComponent\": null,\n                    \"primaryColor\": null,\n                    \"relatedListRecordId\": null,\n                    \"relatedSourceObject\": null,\n                    \"section\": \"Page\",\n                    \"sourceObject\": \"ListViewChartInstance\",\n                    \"subtype\": null,\n                    \"targetObject\": \"ListViewChart\",\n                    \"targetUrl\": null,\n                    \"type\": \"StandardButton\"\n                }\n            ],\n            \"links\": [],\n            \"url\": \"/services/data/v58.0/ui-api/actions/list-view-chart/ListViewChartInstance\"\n        }\n    },\n    \"eTag\": \"60c273c4ba34efcc645bd0ce249c8cd4\",\n    \"url\": \"/services/data/v58.0/ui-api/actions/list-view-chart/ListViewChartInstance\"\n}"
    }
  ]
}