Note: This release is in preview. Features described here don’t become generally available until the latest general availability date that Salesforce announces for this release. Before then, and where features are noted as beta, pilot, or developer preview, we can’t guarantee general availability within any particular time frame or at all. Make your purchase decisions only on the basis of generally available products and features.
QuickActionList
This object is available in API version 32.0 and later.
Supported SOAP Calls
create(), query(), retrieve(), update(), upsert()
Supported REST HTTP Methods
DELETE, GET, PATCH, POST
Fields
| Field | Details |
|---|---|
| LayoutId |
|
Usage
A QuickActionList is a junction between QuickActionListItem objects and a layout. If a layout doesn’t have an associated QuickActionList, it inherits the actions from the global page layout.
The following example retrieves all quick action lists in an organization and their associated layout ID.
1String query = "SELECT Id,LayoutId FROM QuickActionList";
2SObject[] records = sforce.query(query).getRecords();
3
4for (int i = 0; i < records.length; i++) {
5 QuickActionList list = (QuickActionList)records[i];
6 String relatedLayoutId = list.get("LayoutId");
7}