Chilkat Online Tools

C / Salesforce Platform APIs / Get List View Metadata per API Name

Back to Collection Items

#include <C_CkHttp.h>
#include <C_CkStringBuilder.h>
#include <C_CkJsonObject.h>

void ChilkatSample(void)
    {
    HCkHttp http;
    BOOL success;
    HCkStringBuilder sbResponseBody;
    HCkJsonObject jResp;
    int respStatusCode;
    const char *fieldApiName;
    const char *lookupId;
    BOOL sortable;
    BOOL isAscending;
    BOOL cloneable;
    BOOL createable;
    BOOL deletable;
    const char *eTag;
    const char *filterLogicString;
    const char *label;
    const char *Id;
    const char *ListViewApiName;
    const char *ObjectApiName;
    const char *v_Type;
    BOOL updateable;
    int Site;
    int ColumnWidthsType;
    int BillingCountry;
    int Owner_Alias;
    int Phone;
    int Name;
    BOOL ColumnWrapSite;
    BOOL ColumnWrapType;
    BOOL ColumnWrapBillingCountry;
    BOOL ColumnWrapOwner_Alias;
    BOOL ColumnWrapPhone;
    BOOL ColumnWrapName;
    const char *visibility;
    BOOL visibilityEditable;
    int i;
    int count_i;

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

    http = CkHttp_Create();

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

    sbResponseBody = CkStringBuilder_Create();
    success = CkHttp_QuickGetSb(http,"https://domain.com/services/data/v{{version}}/ui-api/list-info/:SOBJECT_API_NAME/:LIST_VIEW_API_NAME",sbResponseBody);
    if (success == FALSE) {
        printf("%s\n",CkHttp_lastErrorText(http));
        CkHttp_Dispose(http);
        CkStringBuilder_Dispose(sbResponseBody);
        return;
    }

    jResp = CkJsonObject_Create();
    CkJsonObject_LoadSb(jResp,sbResponseBody);
    CkJsonObject_putEmitCompact(jResp,FALSE);

    printf("Response Body:\n");
    printf("%s\n",CkJsonObject_emit(jResp));

    respStatusCode = CkHttp_getLastStatus(http);
    printf("Response Status Code = %d\n",respStatusCode);
    if (respStatusCode >= 400) {
        printf("Response Header:\n");
        printf("%s\n",CkHttp_lastHeader(http));
        printf("Failed.\n");
        CkHttp_Dispose(http);
        CkStringBuilder_Dispose(sbResponseBody);
        CkJsonObject_Dispose(jResp);
        return;
    }

    // Sample JSON response:
    // (Sample code for parsing the JSON response is shown below)

    // {
    //   "cloneable": true,
    //   "createable": true,
    //   "deletable": true,
    //   "displayColumns": [
    //     {
    //       "fieldApiName": "Name",
    //       "label": "Account Name",
    //       "lookupId": "Id",
    //       "sortable": true
    //     },
    //     {
    //       "fieldApiName": "Site",
    //       "label": "Account Site",
    //       "lookupId": null,
    //       "sortable": true
    //     },
    //     {
    //       "fieldApiName": "Phone",
    //       "label": "Phone",
    //       "lookupId": null,
    //       "sortable": true
    //     },
    //     {
    //       "fieldApiName": "Type",
    //       "label": "Type",
    //       "lookupId": null,
    //       "sortable": true
    //     },
    //     {
    //       "fieldApiName": "BillingCountry",
    //       "label": "Billing Country",
    //       "lookupId": null,
    //       "sortable": true
    //     },
    //     {
    //       "fieldApiName": "Owner.Alias",
    //       "label": "Account Owner Alias",
    //       "lookupId": "Owner.Id",
    //       "sortable": true
    //     }
    //   ],
    //   "eTag": "55ebdd0de6c2f1e17f63bf4581d64f76",
    //   "filterLogicString": null,
    //   "filteredByInfo": [
    //   ],
    //   "label": "All Accounts",
    //   "listReference": {
    //     "id": "00B58000002ssinEAA",
    //     "listViewApiName": "AllAccounts",
    //     "objectApiName": "Account",
    //     "type": "listView"
    //   },
    //   "objectApiNames": [
    //   ],
    //   "orderedByInfo": [
    //     {
    //       "fieldApiName": "BillingCountry",
    //       "isAscending": false,
    //       "label": "Billing Country"
    //     }
    //   ],
    //   "updateable": true,
    //   "userPreferences": {
    //     "columnWidths": {
    //       "Site": -1,
    //       "Type": -1,
    //       "BillingCountry": -1,
    //       "Owner.Alias": -1,
    //       "Phone": -1,
    //       "Name": -1
    //     },
    //     "columnWrap": {
    //       "Site": false,
    //       "Type": false,
    //       "BillingCountry": false,
    //       "Owner.Alias": false,
    //       "Phone": false,
    //       "Name": false
    //     }
    //   },
    //   "visibility": "Public",
    //   "visibilityEditable": true
    // }

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

    cloneable = CkJsonObject_BoolOf(jResp,"cloneable");
    createable = CkJsonObject_BoolOf(jResp,"createable");
    deletable = CkJsonObject_BoolOf(jResp,"deletable");
    eTag = CkJsonObject_stringOf(jResp,"eTag");
    filterLogicString = CkJsonObject_stringOf(jResp,"filterLogicString");
    label = CkJsonObject_stringOf(jResp,"label");
    Id = CkJsonObject_stringOf(jResp,"listReference.id");
    ListViewApiName = CkJsonObject_stringOf(jResp,"listReference.listViewApiName");
    ObjectApiName = CkJsonObject_stringOf(jResp,"listReference.objectApiName");
    v_Type = CkJsonObject_stringOf(jResp,"listReference.type");
    updateable = CkJsonObject_BoolOf(jResp,"updateable");
    Site = CkJsonObject_IntOf(jResp,"userPreferences.columnWidths.Site");
    ColumnWidthsType = CkJsonObject_IntOf(jResp,"userPreferences.columnWidths.Type");
    BillingCountry = CkJsonObject_IntOf(jResp,"userPreferences.columnWidths.BillingCountry");
    Owner_Alias = CkJsonObject_IntOf(jResp,"userPreferences.columnWidths.\"Owner.Alias\"");
    Phone = CkJsonObject_IntOf(jResp,"userPreferences.columnWidths.Phone");
    Name = CkJsonObject_IntOf(jResp,"userPreferences.columnWidths.Name");
    ColumnWrapSite = CkJsonObject_BoolOf(jResp,"userPreferences.columnWrap.Site");
    ColumnWrapType = CkJsonObject_BoolOf(jResp,"userPreferences.columnWrap.Type");
    ColumnWrapBillingCountry = CkJsonObject_BoolOf(jResp,"userPreferences.columnWrap.BillingCountry");
    ColumnWrapOwner_Alias = CkJsonObject_BoolOf(jResp,"userPreferences.columnWrap.\"Owner.Alias\"");
    ColumnWrapPhone = CkJsonObject_BoolOf(jResp,"userPreferences.columnWrap.Phone");
    ColumnWrapName = CkJsonObject_BoolOf(jResp,"userPreferences.columnWrap.Name");
    visibility = CkJsonObject_stringOf(jResp,"visibility");
    visibilityEditable = CkJsonObject_BoolOf(jResp,"visibilityEditable");
    i = 0;
    count_i = CkJsonObject_SizeOfArray(jResp,"displayColumns");
    while (i < count_i) {
        CkJsonObject_putI(jResp,i);
        fieldApiName = CkJsonObject_stringOf(jResp,"displayColumns[i].fieldApiName");
        label = CkJsonObject_stringOf(jResp,"displayColumns[i].label");
        lookupId = CkJsonObject_stringOf(jResp,"displayColumns[i].lookupId");
        sortable = CkJsonObject_BoolOf(jResp,"displayColumns[i].sortable");
        i = i + 1;
    }

    i = 0;
    count_i = CkJsonObject_SizeOfArray(jResp,"filteredByInfo");
    while (i < count_i) {
        CkJsonObject_putI(jResp,i);
        i = i + 1;
    }

    i = 0;
    count_i = CkJsonObject_SizeOfArray(jResp,"objectApiNames");
    while (i < count_i) {
        CkJsonObject_putI(jResp,i);
        i = i + 1;
    }

    i = 0;
    count_i = CkJsonObject_SizeOfArray(jResp,"orderedByInfo");
    while (i < count_i) {
        CkJsonObject_putI(jResp,i);
        fieldApiName = CkJsonObject_stringOf(jResp,"orderedByInfo[i].fieldApiName");
        isAscending = CkJsonObject_BoolOf(jResp,"orderedByInfo[i].isAscending");
        label = CkJsonObject_stringOf(jResp,"orderedByInfo[i].label");
        i = i + 1;
    }



    CkHttp_Dispose(http);
    CkStringBuilder_Dispose(sbResponseBody);
    CkJsonObject_Dispose(jResp);

    }

Curl Command

curl -X GET
	-H "Authorization: Bearer <access_token>"
https://domain.com/services/data/v{{version}}/ui-api/list-info/:SOBJECT_API_NAME/:LIST_VIEW_API_NAME

Postman Collection Item JSON

{
  "name": "Get List View Metadata per API Name",
  "event": [
    {
      "listen": "prerequest",
      "script": {
        "exec": [
          ""
        ],
        "type": "text/javascript"
      }
    }
  ],
  "protocolProfileBehavior": {
    "disableBodyPruning": true
  },
  "request": {
    "method": "GET",
    "header": [
    ],
    "body": {
      "mode": "raw",
      "raw": "",
      "options": {
        "raw": {
          "language": "json"
        }
      }
    },
    "url": {
      "raw": "{{_endpoint}}/services/data/v{{version}}/ui-api/list-info/:SOBJECT_API_NAME/:LIST_VIEW_API_NAME",
      "host": [
        "{{_endpoint}}"
      ],
      "path": [
        "services",
        "data",
        "v{{version}}",
        "ui-api",
        "list-info",
        ":SOBJECT_API_NAME",
        ":LIST_VIEW_API_NAME"
      ],
      "variable": [
        {
          "key": "SOBJECT_API_NAME",
          "value": "",
          "description": "Object API name"
        },
        {
          "key": "LIST_VIEW_API_NAME",
          "value": "",
          "description": "List view API name"
        }
      ]
    },
    "description": "Returns list view metadata."
  },
  "response": [
    {
      "name": "Get List View Metadata per API Name",
      "originalRequest": {
        "method": "GET",
        "header": [
        ],
        "body": {
          "mode": "raw",
          "raw": "",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        },
        "url": {
          "raw": "{{_endpoint}}/services/data/v{{version}}/ui-api/list-info/:SOBJECT_API_NAME/:LIST_VIEW_API_NAME",
          "host": [
            "{{_endpoint}}"
          ],
          "path": [
            "services",
            "data",
            "v{{version}}",
            "ui-api",
            "list-info",
            ":SOBJECT_API_NAME",
            ":LIST_VIEW_API_NAME"
          ],
          "variable": [
            {
              "key": "SOBJECT_API_NAME",
              "value": "Account",
              "description": "Object API name"
            },
            {
              "key": "LIST_VIEW_API_NAME",
              "value": "AllAccounts",
              "description": "List view API name"
            }
          ]
        }
      },
      "status": "OK",
      "code": 200,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "Date",
          "value": "Fri, 06 Oct 2023 09:56:56 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": "\"55ebdd0de6c2f1e17f63bf4581d64f76--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    \"cloneable\": true,\n    \"createable\": true,\n    \"deletable\": true,\n    \"displayColumns\": [\n        {\n            \"fieldApiName\": \"Name\",\n            \"label\": \"Account Name\",\n            \"lookupId\": \"Id\",\n            \"sortable\": true\n        },\n        {\n            \"fieldApiName\": \"Site\",\n            \"label\": \"Account Site\",\n            \"lookupId\": null,\n            \"sortable\": true\n        },\n        {\n            \"fieldApiName\": \"Phone\",\n            \"label\": \"Phone\",\n            \"lookupId\": null,\n            \"sortable\": true\n        },\n        {\n            \"fieldApiName\": \"Type\",\n            \"label\": \"Type\",\n            \"lookupId\": null,\n            \"sortable\": true\n        },\n        {\n            \"fieldApiName\": \"BillingCountry\",\n            \"label\": \"Billing Country\",\n            \"lookupId\": null,\n            \"sortable\": true\n        },\n        {\n            \"fieldApiName\": \"Owner.Alias\",\n            \"label\": \"Account Owner Alias\",\n            \"lookupId\": \"Owner.Id\",\n            \"sortable\": true\n        }\n    ],\n    \"eTag\": \"55ebdd0de6c2f1e17f63bf4581d64f76\",\n    \"filterLogicString\": null,\n    \"filteredByInfo\": [],\n    \"label\": \"All Accounts\",\n    \"listReference\": {\n        \"id\": \"00B58000002ssinEAA\",\n        \"listViewApiName\": \"AllAccounts\",\n        \"objectApiName\": \"Account\",\n        \"type\": \"listView\"\n    },\n    \"objectApiNames\": [],\n    \"orderedByInfo\": [\n        {\n            \"fieldApiName\": \"BillingCountry\",\n            \"isAscending\": false,\n            \"label\": \"Billing Country\"\n        }\n    ],\n    \"updateable\": true,\n    \"userPreferences\": {\n        \"columnWidths\": {\n            \"Site\": -1,\n            \"Type\": -1,\n            \"BillingCountry\": -1,\n            \"Owner.Alias\": -1,\n            \"Phone\": -1,\n            \"Name\": -1\n        },\n        \"columnWrap\": {\n            \"Site\": false,\n            \"Type\": false,\n            \"BillingCountry\": false,\n            \"Owner.Alias\": false,\n            \"Phone\": false,\n            \"Name\": false\n        }\n    },\n    \"visibility\": \"Public\",\n    \"visibilityEditable\": true\n}"
    }
  ]
}