Back to Collection Items
; This example assumes the Chilkat API to have been previously unlocked.
; See Global Unlock Sample for sample code.
$oHttp = ObjCreate("Chilkat.Http")
Local $bSuccess
; Adds the "Authorization: Bearer <access_token>" header.
$oHttp.AuthToken = "<access_token>"
$oSbResponseBody = ObjCreate("Chilkat.StringBuilder")
$bSuccess = $oHttp.QuickGetSb("https://domain.com/services/data/v{{version}}/ui-api/actions/lookup/:SOBJECT_API_NAMES",$oSbResponseBody)
If ($bSuccess = False) Then
ConsoleWrite($oHttp.LastErrorText & @CRLF)
Exit
EndIf
$oJResp = ObjCreate("Chilkat.JsonObject")
$oJResp.LoadSb($oSbResponseBody)
$oJResp.EmitCompact = False
ConsoleWrite("Response Body:" & @CRLF)
ConsoleWrite($oJResp.Emit() & @CRLF)
Local $iRespStatusCode = $oHttp.LastStatus
ConsoleWrite("Response Status Code = " & $iRespStatusCode & @CRLF)
If ($iRespStatusCode >= 400) Then
ConsoleWrite("Response Header:" & @CRLF)
ConsoleWrite($oHttp.LastHeader & @CRLF)
ConsoleWrite("Failed." & @CRLF)
Exit
EndIf
; Sample JSON response:
; (Sample code for parsing the JSON response is shown below)
; {
; "actions": {
; "Account": {
; "actions": [
; {
; "actionListContext": "Lookup",
; "actionTarget": null,
; "actionTargetType": "Invoke",
; "apiName": "CreateFromLookup",
; "externalId": "00D58000000arpq:Account::Lookup:Desktop:StandardButton:CreateFromLookup",
; "iconUrl": "https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_120.png",
; "id": "0JV4H0000327596WAA",
; "isMassAction": "false",
; "label": "New",
; "lwcComponent": null,
; "primaryColor": "1B96FF",
; "relatedListRecordId": null,
; "relatedSourceObject": null,
; "section": "Page",
; "sourceObject": "Account",
; "subtype": null,
; "targetObject": "Account",
; "targetUrl": null,
; "type": "StandardButton"
; }
; ],
; "links": [
; ],
; "url": "/services/data/v58.0/ui-api/actions/lookup/Account"
; }
; },
; "eTag": "1b573078964111c994670eea1c038003",
; "url": "/services/data/v58.0/ui-api/actions/lookup/Account"
; }
; Sample code for parsing the JSON response...
; Use this online tool to generate parsing code from sample JSON: Generate JSON Parsing Code
Local $sActionListContext
Local $sActionTarget
Local $sActionTargetType
Local $sApiName
Local $sExternalId
Local $sIconUrl
Local $sId
Local $sIsMassAction
Local $sLabel
Local $sLwcComponent
Local $sPrimaryColor
Local $sRelatedListRecordId
Local $sRelatedSourceObject
Local $section
Local $sourceObject
Local $subtype
Local $sTargetObject
Local $sTargetUrl
Local $sV_type
Local $sV_Url = $oJResp.StringOf("actions.Account.url")
Local $sETag = $oJResp.StringOf("eTag")
Local $sUrl = $oJResp.StringOf("url")
Local $i = 0
Local $iCount_i = $oJResp.SizeOfArray("actions.Account.actions")
While $i < $iCount_i
$oJResp.I = $i
$sActionListContext = $oJResp.StringOf("actions.Account.actions[i].actionListContext")
$sActionTarget = $oJResp.StringOf("actions.Account.actions[i].actionTarget")
$sActionTargetType = $oJResp.StringOf("actions.Account.actions[i].actionTargetType")
$sApiName = $oJResp.StringOf("actions.Account.actions[i].apiName")
$sExternalId = $oJResp.StringOf("actions.Account.actions[i].externalId")
$sIconUrl = $oJResp.StringOf("actions.Account.actions[i].iconUrl")
$sId = $oJResp.StringOf("actions.Account.actions[i].id")
$sIsMassAction = $oJResp.StringOf("actions.Account.actions[i].isMassAction")
$sLabel = $oJResp.StringOf("actions.Account.actions[i].label")
$sLwcComponent = $oJResp.StringOf("actions.Account.actions[i].lwcComponent")
$sPrimaryColor = $oJResp.StringOf("actions.Account.actions[i].primaryColor")
$sRelatedListRecordId = $oJResp.StringOf("actions.Account.actions[i].relatedListRecordId")
$sRelatedSourceObject = $oJResp.StringOf("actions.Account.actions[i].relatedSourceObject")
$section = $oJResp.StringOf("actions.Account.actions[i].section")
$sourceObject = $oJResp.StringOf("actions.Account.actions[i].sourceObject")
$subtype = $oJResp.StringOf("actions.Account.actions[i].subtype")
$sTargetObject = $oJResp.StringOf("actions.Account.actions[i].targetObject")
$sTargetUrl = $oJResp.StringOf("actions.Account.actions[i].targetUrl")
$sV_type = $oJResp.StringOf("actions.Account.actions[i].type")
$i = $i + 1
Wend
$i = 0
$iCount_i = $oJResp.SizeOfArray("actions.Account.links")
While $i < $iCount_i
$oJResp.I = $i
$i = $i + 1
Wend
Curl Command
curl -X GET
-H "Authorization: Bearer <access_token>"
https://domain.com/services/data/v{{version}}/ui-api/actions/lookup/:SOBJECT_API_NAMES
Postman Collection Item JSON
{
"name": "Get Lookup Field 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/lookup/:SOBJECT_API_NAMES",
"host": [
"{{_endpoint}}"
],
"path": [
"services",
"data",
"v{{version}}",
"ui-api",
"actions",
"lookup",
":SOBJECT_API_NAMES"
],
"variable": [
{
"key": "SOBJECT_API_NAMES",
"value": "",
"description": "A lookup field name, or a comma-delimited list of lookup field names."
}
]
},
"description": "Get the actions on Lightning pages (FlexiPages)."
},
"response": [
{
"name": "Get Lookup Field Actions",
"originalRequest": {
"method": "GET",
"header": [
],
"body": {
"mode": "raw",
"raw": ""
},
"url": {
"raw": "{{_endpoint}}/services/data/v{{version}}/ui-api/actions/lookup/:SOBJECT_API_NAMES",
"host": [
"{{_endpoint}}"
],
"path": [
"services",
"data",
"v{{version}}",
"ui-api",
"actions",
"lookup",
":SOBJECT_API_NAMES"
],
"variable": [
{
"key": "SOBJECT_API_NAMES",
"value": "Account",
"description": "A lookup field name, or a comma-delimited list of lookup field names."
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Date",
"value": "Fri, 06 Oct 2023 11:47:33 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": "\"1b573078964111c994670eea1c038003--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 \"Account\": {\n \"actions\": [\n {\n \"actionListContext\": \"Lookup\",\n \"actionTarget\": null,\n \"actionTargetType\": \"Invoke\",\n \"apiName\": \"CreateFromLookup\",\n \"externalId\": \"00D58000000arpq:Account::Lookup:Desktop:StandardButton:CreateFromLookup\",\n \"iconUrl\": \"https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_120.png\",\n \"id\": \"0JV4H0000327596WAA\",\n \"isMassAction\": \"false\",\n \"label\": \"New\",\n \"lwcComponent\": null,\n \"primaryColor\": \"1B96FF\",\n \"relatedListRecordId\": null,\n \"relatedSourceObject\": null,\n \"section\": \"Page\",\n \"sourceObject\": \"Account\",\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/lookup/Account\"\n }\n },\n \"eTag\": \"1b573078964111c994670eea1c038003\",\n \"url\": \"/services/data/v58.0/ui-api/actions/lookup/Account\"\n}"
}
]
}