Chilkat Online Tools

SQL Server / Salesforce Platform APIs / Get List View Header Actions

Back to Collection Items

-- Important: See this note about string length limitations for strings returned by sp_OAMethod calls.
--
CREATE PROCEDURE ChilkatSample
AS
BEGIN
    DECLARE @hr int
    -- Important: Do not use nvarchar(max).  See the warning about using nvarchar(max).
    DECLARE @sTmp0 nvarchar(4000)
    -- This example assumes the Chilkat API to have been previously unlocked.
    -- See Global Unlock Sample for sample code.

    DECLARE @http int
    EXEC @hr = sp_OACreate 'Chilkat_9_5_0.Http', @http OUT
    IF @hr <> 0
    BEGIN
        PRINT 'Failed to create ActiveX component'
        RETURN
    END

    DECLARE @success int

    -- Adds the "Authorization: Bearer <access_token>" header.
    EXEC sp_OASetProperty @http, 'AuthToken', '<access_token>'

    DECLARE @sbResponseBody int
    EXEC @hr = sp_OACreate 'Chilkat_9_5_0.StringBuilder', @sbResponseBody OUT

    EXEC sp_OAMethod @http, 'QuickGetSb', @success OUT, 'https://domain.com/services/data/v{{version}}/ui-api/actions/list-view/:LIST_VIEW_IDS', @sbResponseBody
    IF @success = 0
      BEGIN
        EXEC sp_OAGetProperty @http, 'LastErrorText', @sTmp0 OUT
        PRINT @sTmp0
        EXEC @hr = sp_OADestroy @http
        EXEC @hr = sp_OADestroy @sbResponseBody
        RETURN
      END

    DECLARE @jResp int
    EXEC @hr = sp_OACreate 'Chilkat_9_5_0.JsonObject', @jResp OUT

    EXEC sp_OAMethod @jResp, 'LoadSb', @success OUT, @sbResponseBody
    EXEC sp_OASetProperty @jResp, 'EmitCompact', 0


    PRINT 'Response Body:'
    EXEC sp_OAMethod @jResp, 'Emit', @sTmp0 OUT
    PRINT @sTmp0

    DECLARE @respStatusCode int
    EXEC sp_OAGetProperty @http, 'LastStatus', @respStatusCode OUT

    PRINT 'Response Status Code = ' + @respStatusCode
    IF @respStatusCode >= 400
      BEGIN

        PRINT 'Response Header:'
        EXEC sp_OAGetProperty @http, 'LastHeader', @sTmp0 OUT
        PRINT @sTmp0

        PRINT 'Failed.'
        EXEC @hr = sp_OADestroy @http
        EXEC @hr = sp_OADestroy @sbResponseBody
        EXEC @hr = sp_OADestroy @jResp
        RETURN
      END

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

    -- {
    --   "actions": {
    --     "00B58000002ssinEAA": {
    --       "actions": [
    --         {
    --           "actionListContext": "ListView",
    --           "actionTarget": null,
    --           "actionTargetType": "Invoke",
    --           "apiName": "EditFilter",
    --           "externalId": "00D58000000arpq:00B58000002ssinEAA::ListView:Desktop:StandardButton:EditFilter",
    --           "iconUrl": "https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/filter_120.png",
    --           "id": "0JV4H0000132177WAA",
    --           "isMassAction": "false",
    --           "label": "Filter",
    --           "lwcComponent": null,
    --           "primaryColor": "0176D3",
    --           "relatedListRecordId": null,
    --           "relatedSourceObject": null,
    --           "section": "Page",
    --           "sourceObject": "00B58000002ssinEAA",
    --           "subtype": null,
    --           "targetObject": "Account",
    --           "targetUrl": null,
    --           "type": "StandardButton"
    --         },
    --         {
    --           "actionListContext": "ListView",
    --           "actionTarget": null,
    --           "actionTargetType": "Invoke",
    --           "apiName": "ListSort",
    --           "externalId": "00D58000000arpq:00B58000002ssinEAA::ListView:Desktop:StandardButton:ListSort",
    --           "iconUrl": "https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/sort_120.png",
    --           "id": "0JV4H0000132178WAA",
    --           "isMassAction": "false",
    --           "label": "Sort",
    --           "lwcComponent": null,
    --           "primaryColor": "FF538A",
    --           "relatedListRecordId": null,
    --           "relatedSourceObject": null,
    --           "section": "Page",
    --           "sourceObject": "00B58000002ssinEAA",
    --           "subtype": null,
    --           "targetObject": "Account",
    --           "targetUrl": null,
    --           "type": "StandardButton"
    --         },
    --         {
    --           "actionListContext": "ListView",
    --           "actionTarget": null,
    --           "actionTargetType": "Invoke",
    --           "apiName": "New",
    --           "externalId": "00D58000000arpq:00B58000002ssinEAA::ListView:Desktop:StandardButton:New",
    --           "iconUrl": "https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_120.png",
    --           "id": "0JV4H0000132179WAA",
    --           "isMassAction": "false",
    --           "label": "New",
    --           "lwcComponent": null,
    --           "primaryColor": "1B96FF",
    --           "relatedListRecordId": null,
    --           "relatedSourceObject": null,
    --           "section": "Page",
    --           "sourceObject": "00B58000002ssinEAA",
    --           "subtype": null,
    --           "targetObject": "Account",
    --           "targetUrl": null,
    --           "type": "StandardButton"
    --         },
    --         {
    --           "actionListContext": "ListView",
    --           "actionTarget": null,
    --           "actionTargetType": null,
    --           "apiName": "PrintableListView",
    --           "externalId": "00D58000000arpq:00B58000002ssinEAA::ListView:Desktop:StandardButton:PrintableListView",
    --           "iconUrl": "https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_custom19_120.png",
    --           "id": "0JV4H0000132180WAA",
    --           "isMassAction": "false",
    --           "label": "Printable View",
    --           "lwcComponent": null,
    --           "primaryColor": null,
    --           "relatedListRecordId": null,
    --           "relatedSourceObject": null,
    --           "section": "Page",
    --           "sourceObject": "00B58000002ssinEAA",
    --           "subtype": null,
    --           "targetObject": "Account",
    --           "targetUrl": null,
    --           "type": "StandardButton"
    --         }
    --       ],
    --       "links": [
    --       ],
    --       "url": "/services/data/v58.0/ui-api/actions/list-view/00B58000002ssinEAA"
    --     }
    --   },
    --   "eTag": "6f6e964d38807defe01bd28d144c9c0e",
    --   "url": "/services/data/v58.0/ui-api/actions/list-view/00B58000002ssinEAA"
    -- }

    -- Sample code for parsing the JSON response...
    -- Use this online tool to generate parsing code from sample JSON: Generate JSON Parsing Code

    DECLARE @actionListContext nvarchar(4000)

    DECLARE @actionTarget nvarchar(4000)

    DECLARE @actionTargetType nvarchar(4000)

    DECLARE @apiName nvarchar(4000)

    DECLARE @externalId nvarchar(4000)

    DECLARE @iconUrl nvarchar(4000)

    DECLARE @id nvarchar(4000)

    DECLARE @isMassAction nvarchar(4000)

    DECLARE @label nvarchar(4000)

    DECLARE @lwcComponent nvarchar(4000)

    DECLARE @primaryColor nvarchar(4000)

    DECLARE @relatedListRecordId nvarchar(4000)

    DECLARE @relatedSourceObject nvarchar(4000)

    DECLARE @section nvarchar(4000)

    DECLARE @sourceObject nvarchar(4000)

    DECLARE @subtype nvarchar(4000)

    DECLARE @targetObject nvarchar(4000)

    DECLARE @targetUrl nvarchar(4000)

    DECLARE @v_type nvarchar(4000)

    DECLARE @v_Url nvarchar(4000)
    EXEC sp_OAMethod @jResp, 'StringOf', @v_Url OUT, 'actions.00B58000002ssinEAA.url'
    DECLARE @eTag nvarchar(4000)
    EXEC sp_OAMethod @jResp, 'StringOf', @eTag OUT, 'eTag'
    DECLARE @url nvarchar(4000)
    EXEC sp_OAMethod @jResp, 'StringOf', @url OUT, 'url'
    DECLARE @i int
    SELECT @i = 0
    DECLARE @count_i int
    EXEC sp_OAMethod @jResp, 'SizeOfArray', @count_i OUT, 'actions.00B58000002ssinEAA.actions'
    WHILE @i < @count_i
      BEGIN
        EXEC sp_OASetProperty @jResp, 'I', @i
        EXEC sp_OAMethod @jResp, 'StringOf', @actionListContext OUT, 'actions.00B58000002ssinEAA.actions[i].actionListContext'
        EXEC sp_OAMethod @jResp, 'StringOf', @actionTarget OUT, 'actions.00B58000002ssinEAA.actions[i].actionTarget'
        EXEC sp_OAMethod @jResp, 'StringOf', @actionTargetType OUT, 'actions.00B58000002ssinEAA.actions[i].actionTargetType'
        EXEC sp_OAMethod @jResp, 'StringOf', @apiName OUT, 'actions.00B58000002ssinEAA.actions[i].apiName'
        EXEC sp_OAMethod @jResp, 'StringOf', @externalId OUT, 'actions.00B58000002ssinEAA.actions[i].externalId'
        EXEC sp_OAMethod @jResp, 'StringOf', @iconUrl OUT, 'actions.00B58000002ssinEAA.actions[i].iconUrl'
        EXEC sp_OAMethod @jResp, 'StringOf', @id OUT, 'actions.00B58000002ssinEAA.actions[i].id'
        EXEC sp_OAMethod @jResp, 'StringOf', @isMassAction OUT, 'actions.00B58000002ssinEAA.actions[i].isMassAction'
        EXEC sp_OAMethod @jResp, 'StringOf', @label OUT, 'actions.00B58000002ssinEAA.actions[i].label'
        EXEC sp_OAMethod @jResp, 'StringOf', @lwcComponent OUT, 'actions.00B58000002ssinEAA.actions[i].lwcComponent'
        EXEC sp_OAMethod @jResp, 'StringOf', @primaryColor OUT, 'actions.00B58000002ssinEAA.actions[i].primaryColor'
        EXEC sp_OAMethod @jResp, 'StringOf', @relatedListRecordId OUT, 'actions.00B58000002ssinEAA.actions[i].relatedListRecordId'
        EXEC sp_OAMethod @jResp, 'StringOf', @relatedSourceObject OUT, 'actions.00B58000002ssinEAA.actions[i].relatedSourceObject'
        EXEC sp_OAMethod @jResp, 'StringOf', @section OUT, 'actions.00B58000002ssinEAA.actions[i].section'
        EXEC sp_OAMethod @jResp, 'StringOf', @sourceObject OUT, 'actions.00B58000002ssinEAA.actions[i].sourceObject'
        EXEC sp_OAMethod @jResp, 'StringOf', @subtype OUT, 'actions.00B58000002ssinEAA.actions[i].subtype'
        EXEC sp_OAMethod @jResp, 'StringOf', @targetObject OUT, 'actions.00B58000002ssinEAA.actions[i].targetObject'
        EXEC sp_OAMethod @jResp, 'StringOf', @targetUrl OUT, 'actions.00B58000002ssinEAA.actions[i].targetUrl'
        EXEC sp_OAMethod @jResp, 'StringOf', @v_type OUT, 'actions.00B58000002ssinEAA.actions[i].type'
        SELECT @i = @i + 1
      END
    SELECT @i = 0
    EXEC sp_OAMethod @jResp, 'SizeOfArray', @count_i OUT, 'actions.00B58000002ssinEAA.links'
    WHILE @i < @count_i
      BEGIN
        EXEC sp_OASetProperty @jResp, 'I', @i
        SELECT @i = @i + 1
      END

    EXEC @hr = sp_OADestroy @http
    EXEC @hr = sp_OADestroy @sbResponseBody
    EXEC @hr = sp_OADestroy @jResp


END
GO

Curl Command

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

Postman Collection Item JSON

{
  "name": "Get List View Header 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/:LIST_VIEW_IDS",
      "host": [
        "{{_endpoint}}"
      ],
      "path": [
        "services",
        "data",
        "v{{version}}",
        "ui-api",
        "actions",
        "list-view",
        ":LIST_VIEW_IDS"
      ],
      "variable": [
        {
          "key": "LIST_VIEW_IDS",
          "value": "",
          "description": "A single list view ID, or a comma-delimited list of list view IDs."
        }
      ]
    },
    "description": "Get the actions on records in related lists."
  },
  "response": [
    {
      "name": "Get List View Header Actions",
      "originalRequest": {
        "method": "GET",
        "header": [
        ],
        "body": {
          "mode": "raw",
          "raw": ""
        },
        "url": {
          "raw": "{{_endpoint}}/services/data/v{{version}}/ui-api/actions/list-view/:LIST_VIEW_IDS",
          "host": [
            "{{_endpoint}}"
          ],
          "path": [
            "services",
            "data",
            "v{{version}}",
            "ui-api",
            "actions",
            "list-view",
            ":LIST_VIEW_IDS"
          ],
          "variable": [
            {
              "key": "LIST_VIEW_IDS",
              "value": "00B58000002ssinEAA",
              "description": "A single list view ID, or a comma-delimited list of list view IDs."
            }
          ]
        }
      },
      "status": "OK",
      "code": 200,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "Date",
          "value": "Fri, 06 Oct 2023 11:39:25 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": "\"6f6e964d38807defe01bd28d144c9c0e--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        \"00B58000002ssinEAA\": {\n            \"actions\": [\n                {\n                    \"actionListContext\": \"ListView\",\n                    \"actionTarget\": null,\n                    \"actionTargetType\": \"Invoke\",\n                    \"apiName\": \"EditFilter\",\n                    \"externalId\": \"00D58000000arpq:00B58000002ssinEAA::ListView:Desktop:StandardButton:EditFilter\",\n                    \"iconUrl\": \"https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/filter_120.png\",\n                    \"id\": \"0JV4H0000132177WAA\",\n                    \"isMassAction\": \"false\",\n                    \"label\": \"Filter\",\n                    \"lwcComponent\": null,\n                    \"primaryColor\": \"0176D3\",\n                    \"relatedListRecordId\": null,\n                    \"relatedSourceObject\": null,\n                    \"section\": \"Page\",\n                    \"sourceObject\": \"00B58000002ssinEAA\",\n                    \"subtype\": null,\n                    \"targetObject\": \"Account\",\n                    \"targetUrl\": null,\n                    \"type\": \"StandardButton\"\n                },\n                {\n                    \"actionListContext\": \"ListView\",\n                    \"actionTarget\": null,\n                    \"actionTargetType\": \"Invoke\",\n                    \"apiName\": \"ListSort\",\n                    \"externalId\": \"00D58000000arpq:00B58000002ssinEAA::ListView:Desktop:StandardButton:ListSort\",\n                    \"iconUrl\": \"https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/sort_120.png\",\n                    \"id\": \"0JV4H0000132178WAA\",\n                    \"isMassAction\": \"false\",\n                    \"label\": \"Sort\",\n                    \"lwcComponent\": null,\n                    \"primaryColor\": \"FF538A\",\n                    \"relatedListRecordId\": null,\n                    \"relatedSourceObject\": null,\n                    \"section\": \"Page\",\n                    \"sourceObject\": \"00B58000002ssinEAA\",\n                    \"subtype\": null,\n                    \"targetObject\": \"Account\",\n                    \"targetUrl\": null,\n                    \"type\": \"StandardButton\"\n                },\n                {\n                    \"actionListContext\": \"ListView\",\n                    \"actionTarget\": null,\n                    \"actionTargetType\": \"Invoke\",\n                    \"apiName\": \"New\",\n                    \"externalId\": \"00D58000000arpq:00B58000002ssinEAA::ListView:Desktop:StandardButton:New\",\n                    \"iconUrl\": \"https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_120.png\",\n                    \"id\": \"0JV4H0000132179WAA\",\n                    \"isMassAction\": \"false\",\n                    \"label\": \"New\",\n                    \"lwcComponent\": null,\n                    \"primaryColor\": \"1B96FF\",\n                    \"relatedListRecordId\": null,\n                    \"relatedSourceObject\": null,\n                    \"section\": \"Page\",\n                    \"sourceObject\": \"00B58000002ssinEAA\",\n                    \"subtype\": null,\n                    \"targetObject\": \"Account\",\n                    \"targetUrl\": null,\n                    \"type\": \"StandardButton\"\n                },\n                {\n                    \"actionListContext\": \"ListView\",\n                    \"actionTarget\": null,\n                    \"actionTargetType\": null,\n                    \"apiName\": \"PrintableListView\",\n                    \"externalId\": \"00D58000000arpq:00B58000002ssinEAA::ListView:Desktop:StandardButton:PrintableListView\",\n                    \"iconUrl\": \"https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_custom19_120.png\",\n                    \"id\": \"0JV4H0000132180WAA\",\n                    \"isMassAction\": \"false\",\n                    \"label\": \"Printable View\",\n                    \"lwcComponent\": null,\n                    \"primaryColor\": null,\n                    \"relatedListRecordId\": null,\n                    \"relatedSourceObject\": null,\n                    \"section\": \"Page\",\n                    \"sourceObject\": \"00B58000002ssinEAA\",\n                    \"subtype\": null,\n                    \"targetObject\": \"Account\",\n                    \"targetUrl\": null,\n                    \"type\": \"StandardButton\"\n                }\n            ],\n            \"links\": [],\n            \"url\": \"/services/data/v58.0/ui-api/actions/list-view/00B58000002ssinEAA\"\n        }\n    },\n    \"eTag\": \"6f6e964d38807defe01bd28d144c9c0e\",\n    \"url\": \"/services/data/v58.0/ui-api/actions/list-view/00B58000002ssinEAA\"\n}"
    }
  ]
}