Newer Version Available
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}