Chilkat Online Tools

Foxpro / Salesforce Platform APIs / Get List View Record Actions

Back to Collection Items

LOCAL loHttp
LOCAL lnSuccess
LOCAL loSbResponseBody
LOCAL loJResp
LOCAL lnRespStatusCode
LOCAL lcActionListContext
LOCAL lcActionTarget
LOCAL lcActionTargetType
LOCAL lcApiName
LOCAL lcExternalId
LOCAL lcIconUrl
LOCAL lcId
LOCAL lcIsMassAction
LOCAL lcLabel
LOCAL lcLwcComponent
LOCAL lcPrimaryColor
LOCAL lcRelatedListRecordId
LOCAL lcRelatedSourceObject
LOCAL lcSection
LOCAL lcSourceObject
LOCAL lcSubtype
LOCAL lcTargetObject
LOCAL lcTargetUrl
LOCAL lcV_type
LOCAL lcV_Url
LOCAL lcETag
LOCAL lcUrl
LOCAL i
LOCAL lnCount_i

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

* For versions of Chilkat < 10.0.0, use CreateObject('Chilkat_9_5_0.Http')
loHttp = CreateObject('Chilkat.Http')

* Adds the "Authorization: Bearer <access_token>" header.
loHttp.AuthToken = "<access_token>"

* For versions of Chilkat < 10.0.0, use CreateObject('Chilkat_9_5_0.StringBuilder')
loSbResponseBody = CreateObject('Chilkat.StringBuilder')
lnSuccess = loHttp.QuickGetSb("https://domain.com/services/data/v{{version}}/ui-api/actions/list-view-record/:RECORD_IDS",loSbResponseBody)
IF (lnSuccess = 0) THEN
    ? loHttp.LastErrorText
    RELEASE loHttp
    RELEASE loSbResponseBody
    CANCEL
ENDIF

* For versions of Chilkat < 10.0.0, use CreateObject('Chilkat_9_5_0.JsonObject')
loJResp = CreateObject('Chilkat.JsonObject')
loJResp.LoadSb(loSbResponseBody)
loJResp.EmitCompact = 0

? "Response Body:"
? loJResp.Emit()

lnRespStatusCode = loHttp.LastStatus
? "Response Status Code = " + STR(lnRespStatusCode)
IF (lnRespStatusCode >= 400) THEN
    ? "Response Header:"
    ? loHttp.LastHeader
    ? "Failed."
    RELEASE loHttp
    RELEASE loSbResponseBody
    RELEASE loJResp
    CANCEL
ENDIF

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

* {
*   "actions": {
*     "00358000006woxwAAA": {
*       "actions": [
*         {
*           "actionListContext": "ListViewRecord",
*           "actionTarget": null,
*           "actionTargetType": "Invoke",
*           "apiName": "Edit",
*           "externalId": "00D58000000arpq:00358000006woxwAAA::ListViewRecord:Desktop:StandardButton:Edit",
*           "iconUrl": "https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/edit_120.png",
*           "id": "0JV4H0000382730WAA",
*           "isMassAction": "false",
*           "label": "Edit",
*           "lwcComponent": null,
*           "primaryColor": "06A59A",
*           "relatedListRecordId": null,
*           "relatedSourceObject": null,
*           "section": "Page",
*           "sourceObject": "00358000006woxwAAA",
*           "subtype": null,
*           "targetObject": "Contact",
*           "targetUrl": null,
*           "type": "StandardButton"
*         },
*         {
*           "actionListContext": "ListViewRecord",
*           "actionTarget": null,
*           "actionTargetType": "Invoke",
*           "apiName": "Delete",
*           "externalId": "00D58000000arpq:00358000006woxwAAA::ListViewRecord:Desktop:StandardButton:Delete",
*           "iconUrl": "https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/delete_120.png",
*           "id": "0JV4H0000382731WAA",
*           "isMassAction": "false",
*           "label": "Delete",
*           "lwcComponent": null,
*           "primaryColor": "FF538A",
*           "relatedListRecordId": null,
*           "relatedSourceObject": null,
*           "section": "Page",
*           "sourceObject": "00358000006woxwAAA",
*           "subtype": null,
*           "targetObject": "Contact",
*           "targetUrl": null,
*           "type": "StandardButton"
*         },
*         {
*           "actionListContext": "ListViewRecord",
*           "actionTarget": null,
*           "actionTargetType": "Invoke",
*           "apiName": "ChangeOwnerOne",
*           "externalId": "00D58000000arpq:00358000006woxwAAA::ListViewRecord:Desktop:StandardButton:ChangeOwnerOne",
*           "iconUrl": "https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/change_owner_120.png",
*           "id": "0JV4H0000382732WAA",
*           "isMassAction": "false",
*           "label": "Change Owner",
*           "lwcComponent": null,
*           "primaryColor": "107CAD",
*           "relatedListRecordId": null,
*           "relatedSourceObject": null,
*           "section": "Page",
*           "sourceObject": "00358000006woxwAAA",
*           "subtype": null,
*           "targetObject": "Contact",
*           "targetUrl": null,
*           "type": "StandardButton"
*         }
*       ],
*       "links": [
*       ],
*       "url": "/services/data/v58.0/ui-api/actions/list-view-record/00358000006woxwAAA"
*     }
*   },
*   "eTag": "1baaebae684ef749af218f59bf4b1d4d",
*   "url": "/services/data/v58.0/ui-api/actions/list-view-record/00358000006woxwAAA"
* }

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

lcV_Url = loJResp.StringOf("actions.00358000006woxwAAA.url")
lcETag = loJResp.StringOf("eTag")
lcUrl = loJResp.StringOf("url")
i = 0
lnCount_i = loJResp.SizeOfArray("actions.00358000006woxwAAA.actions")
DO WHILE i < lnCount_i
    loJResp.I = i
    lcActionListContext = loJResp.StringOf("actions.00358000006woxwAAA.actions[i].actionListContext")
    lcActionTarget = loJResp.StringOf("actions.00358000006woxwAAA.actions[i].actionTarget")
    lcActionTargetType = loJResp.StringOf("actions.00358000006woxwAAA.actions[i].actionTargetType")
    lcApiName = loJResp.StringOf("actions.00358000006woxwAAA.actions[i].apiName")
    lcExternalId = loJResp.StringOf("actions.00358000006woxwAAA.actions[i].externalId")
    lcIconUrl = loJResp.StringOf("actions.00358000006woxwAAA.actions[i].iconUrl")
    lcId = loJResp.StringOf("actions.00358000006woxwAAA.actions[i].id")
    lcIsMassAction = loJResp.StringOf("actions.00358000006woxwAAA.actions[i].isMassAction")
    lcLabel = loJResp.StringOf("actions.00358000006woxwAAA.actions[i].label")
    lcLwcComponent = loJResp.StringOf("actions.00358000006woxwAAA.actions[i].lwcComponent")
    lcPrimaryColor = loJResp.StringOf("actions.00358000006woxwAAA.actions[i].primaryColor")
    lcRelatedListRecordId = loJResp.StringOf("actions.00358000006woxwAAA.actions[i].relatedListRecordId")
    lcRelatedSourceObject = loJResp.StringOf("actions.00358000006woxwAAA.actions[i].relatedSourceObject")
    lcSection = loJResp.StringOf("actions.00358000006woxwAAA.actions[i].section")
    lcSourceObject = loJResp.StringOf("actions.00358000006woxwAAA.actions[i].sourceObject")
    lcSubtype = loJResp.StringOf("actions.00358000006woxwAAA.actions[i].subtype")
    lcTargetObject = loJResp.StringOf("actions.00358000006woxwAAA.actions[i].targetObject")
    lcTargetUrl = loJResp.StringOf("actions.00358000006woxwAAA.actions[i].targetUrl")
    lcV_type = loJResp.StringOf("actions.00358000006woxwAAA.actions[i].type")
    i = i + 1
ENDDO
i = 0
lnCount_i = loJResp.SizeOfArray("actions.00358000006woxwAAA.links")
DO WHILE i < lnCount_i
    loJResp.I = i
    i = i + 1
ENDDO

RELEASE loHttp
RELEASE loSbResponseBody
RELEASE loJResp

Curl Command

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

Postman Collection Item JSON

{
  "name": "Get List View Record 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-record/:RECORD_IDS",
      "host": [
        "{{_endpoint}}"
      ],
      "path": [
        "services",
        "data",
        "v{{version}}",
        "ui-api",
        "actions",
        "list-view-record",
        ":RECORD_IDS"
      ],
      "variable": [
        {
          "key": "RECORD_IDS",
          "value": "",
          "description": "A single record ID, or a comma-delimited list of record IDs."
        }
      ]
    },
    "description": "Get the record actions on list views."
  },
  "response": [
    {
      "name": "Get List View Record Actions",
      "originalRequest": {
        "method": "GET",
        "header": [
        ],
        "body": {
          "mode": "raw",
          "raw": ""
        },
        "url": {
          "raw": "{{_endpoint}}/services/data/v{{version}}/ui-api/actions/list-view-record/:RECORD_IDS",
          "host": [
            "{{_endpoint}}"
          ],
          "path": [
            "services",
            "data",
            "v{{version}}",
            "ui-api",
            "actions",
            "list-view-record",
            ":RECORD_IDS"
          ],
          "variable": [
            {
              "key": "RECORD_IDS",
              "value": "00358000006woxwAAA",
              "description": "A single record ID, or a comma-delimited list of record IDs."
            }
          ]
        }
      },
      "status": "OK",
      "code": 200,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "Date",
          "value": "Fri, 06 Oct 2023 11:40:07 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": "\"1baaebae684ef749af218f59bf4b1d4d--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        \"00358000006woxwAAA\": {\n            \"actions\": [\n                {\n                    \"actionListContext\": \"ListViewRecord\",\n                    \"actionTarget\": null,\n                    \"actionTargetType\": \"Invoke\",\n                    \"apiName\": \"Edit\",\n                    \"externalId\": \"00D58000000arpq:00358000006woxwAAA::ListViewRecord:Desktop:StandardButton:Edit\",\n                    \"iconUrl\": \"https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/edit_120.png\",\n                    \"id\": \"0JV4H0000382730WAA\",\n                    \"isMassAction\": \"false\",\n                    \"label\": \"Edit\",\n                    \"lwcComponent\": null,\n                    \"primaryColor\": \"06A59A\",\n                    \"relatedListRecordId\": null,\n                    \"relatedSourceObject\": null,\n                    \"section\": \"Page\",\n                    \"sourceObject\": \"00358000006woxwAAA\",\n                    \"subtype\": null,\n                    \"targetObject\": \"Contact\",\n                    \"targetUrl\": null,\n                    \"type\": \"StandardButton\"\n                },\n                {\n                    \"actionListContext\": \"ListViewRecord\",\n                    \"actionTarget\": null,\n                    \"actionTargetType\": \"Invoke\",\n                    \"apiName\": \"Delete\",\n                    \"externalId\": \"00D58000000arpq:00358000006woxwAAA::ListViewRecord:Desktop:StandardButton:Delete\",\n                    \"iconUrl\": \"https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/delete_120.png\",\n                    \"id\": \"0JV4H0000382731WAA\",\n                    \"isMassAction\": \"false\",\n                    \"label\": \"Delete\",\n                    \"lwcComponent\": null,\n                    \"primaryColor\": \"FF538A\",\n                    \"relatedListRecordId\": null,\n                    \"relatedSourceObject\": null,\n                    \"section\": \"Page\",\n                    \"sourceObject\": \"00358000006woxwAAA\",\n                    \"subtype\": null,\n                    \"targetObject\": \"Contact\",\n                    \"targetUrl\": null,\n                    \"type\": \"StandardButton\"\n                },\n                {\n                    \"actionListContext\": \"ListViewRecord\",\n                    \"actionTarget\": null,\n                    \"actionTargetType\": \"Invoke\",\n                    \"apiName\": \"ChangeOwnerOne\",\n                    \"externalId\": \"00D58000000arpq:00358000006woxwAAA::ListViewRecord:Desktop:StandardButton:ChangeOwnerOne\",\n                    \"iconUrl\": \"https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/change_owner_120.png\",\n                    \"id\": \"0JV4H0000382732WAA\",\n                    \"isMassAction\": \"false\",\n                    \"label\": \"Change Owner\",\n                    \"lwcComponent\": null,\n                    \"primaryColor\": \"107CAD\",\n                    \"relatedListRecordId\": null,\n                    \"relatedSourceObject\": null,\n                    \"section\": \"Page\",\n                    \"sourceObject\": \"00358000006woxwAAA\",\n                    \"subtype\": null,\n                    \"targetObject\": \"Contact\",\n                    \"targetUrl\": null,\n                    \"type\": \"StandardButton\"\n                }\n            ],\n            \"links\": [],\n            \"url\": \"/services/data/v58.0/ui-api/actions/list-view-record/00358000006woxwAAA\"\n        }\n    },\n    \"eTag\": \"1baaebae684ef749af218f59bf4b1d4d\",\n    \"url\": \"/services/data/v58.0/ui-api/actions/list-view-record/00358000006woxwAAA\"\n}"
    }
  ]
}