Newer Version Available
selectAction
Allows custom components to select and focus on a quick action on a record
page.
Arguments
| Name | Type | Description |
|---|---|---|
| actionName | string | The name of the quick action that you want to access. |
The actionName parameter starts with the Salesforce object, followed by the quick action name. For example:
1actionName: "Case.UpdateCase"Response
Returns a Promise. Success resolves to a response object. The Promise is rejected on error response.
1success: boolean,
2unavailableAction: boolean,
3targetableFields: [{
4 fieldName: "Status",
5 type: "PickList"
6}],
7actionName: string,
8errors: []