Back to Collection Items
var
begin
http.AuthToken := '<access_token>';success := http.QuickGetSb('https://domain.com/services/data/v{{version}}/actions/custom',sbResponseBody.ControlInterface);
Curl Command
curl -X GET
-H "Authorization: Bearer <access_token>"
-H "Content-Type: application/json"
https://domain.com/services/data/v{{version}}/actions/custom
Postman Collection Item JSON
{
"name": "Custom Invocable Actions",
"request": {
"method": "GET",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"url": {
"raw": "{{_endpoint}}/services/data/v{{version}}/actions/custom",
"host": [
"{{_endpoint}}"
],
"path": [
"services",
"data",
"v{{version}}",
"actions",
"custom"
]
},
"description": "Returns the list of all custom actions. You can also get basic information for each type of action.\nThis resource is available in REST API version 32.0 and later."
},
"response": [
]
}