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.

Update a Record with a Quick Action

Perform an Update a Record quick action. To perform a quick action that creates or updates a record, you can also use the POST method.
Resource
1/ui-api/actions/perform-quick-action/${actionApiName}

actionApiName—The API name of a quick action.

Available Version
58.0
HTTP Method
PATCH
Example

This example updates fields on an Account.

1PATCH /services/data/v67.0/ui-api/actions/perform-quick-action/Account.UpdateAccount
1{
2 "apiName": "Account",
3 "contextId": "001RO000003zKsYYAU",  
4 "fields": {
5   "Type": "Prospect",
6   "Phone": "(785) 241-6200"
7 }
8}
Request Parameters
Parameter Name Type Description Required or Optional Available Version
performQuickActionInput Perform Action Input The data for the quick action. Required 58.0
Response Body
Quick Action Execution