Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

For a sample proxy service that illustrates how to work with Quick Actions, see Sample configuration

OperationDescription
quickActionsRetrieves a list of global actions.
sObjectActionRetrieves a list of object-specific actions.

getSpecificAction

Retrieves a specific action for a specific object.
getDescribeSpecificActionRetrieves the description of a specific action for a specific object.
getDefaultValueOfActionRetrieves a specific action’s default values, including default field values.

Operation details

This section provides further details on the operations related to Quick Actions. Quick Actions return a list of global actions and object-specific actions.

...

Code Block
languagexml
titlesObjectAction
<salesforcerest.sObjectAction>
    <sobject><sObjectName>{$ctx:sobjectsObjectName}</sobject>sObjectName>
</salesforcerest.sObjectAction>
Properties
  • sobject
    sObjectName: The type of object for which you want to retrieve a list of quick actions.
Sample request

Following is a sample REST request that can be handled by the sObjectAction operation.

Code Block
languagexml
titleSample request for sObjectAction operation
{
  "accessToken":"00D280000017q6q!AQoAQOeXcp7zKo3gUdy6r064_LsJ5bYYrUn_qAZG9TtKFLPfUMRxiato.E162_2XAtCTZLFQTbNk2Rz6Zm_juSakFE_aaBPp",
  "apiUrl":"https://ap2.salesforce.com",
  "clientId": "3MVG9ZL0ppGP5UrBrnsanGUZRgHqc8gTV4t_6tfuef8Zz4LhFPipmlooU6GBszpplbTzVXXWjqkGHubhRip1s",
  "refreshToken": "5Aep861TSESvWeug_xvFHRBTTbf_YrTWgEyjBJo7Xr34yOQ7GCFUN5DnNPxzDIoGoWi4evqOl_lT1B9nE5dAtSb",
  "clientSecret": "9104967092887676680",
  "hostName": "https://login.salesforce.com",
  "intervalTime" : "100000",
  "apiVersion": "v32.0",
  "sobjectsObjectName": "Account",
  "registryPath": "connectors/SalesforceRest"
 }

...