No Results
Search Tips:
- Please consider misspellings
- Try different search keywords
Newer Version Available
Quick Actions
Returns a list of global publisher actions and standard actions. This resource is available in REST API version 28.0 and later. When working with publisher actions, also refer to SObject Quick Actions.
- URI
- /vXX.X/quickActions/
- Formats
- JSON, XML
- HTTP Method
- HEAD, GET, POST
- Authentication
- Authorization: Bearer token
- Parameters
- None required
- Example usage for getting global quick actions
1curl https://na1.salesforce.com/services/data/v28.0/quickActions/ -H "Authorization: Bearer token"- Example for creating a contact using an action
1curl https://na1.salesforce.com/services/data/v28.0/quickActions/CreateContact -H 'Authorization: Bearer access_token -H "Content-Type: application/json" -d @newcontact.json'- Example JSON request body newcontact.json file
1{ 2 3 "record" : { "LastName" : "Smith" } 4 5}