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.
Confirm Sales Meeting
Salesforce Inbox must be enabled in your org.
This object is available in API version 66.0 and later.
Supported REST HTTP Methods
URI: /services/data/vXX.X/actions/standard/confirmSalesMeeting
Formats: JSON, XML
HTTP Methods: GET, HEAD, POST
Authentication: Authorization: Bearer token
Inputs
| Input | Type | Description |
|---|---|---|
| meetingRequestId | string | Required. The ID of the meeting request associated with a Get Available Meeting Times request. |
| meetingTime | string | Required. The meeting time in epoch milliseconds corresponding to the selected start time. |
Outputs
| Output | Type | Description |
|---|---|---|
| meetingStatus | string | The status of the meeting scheduling attempt. |
| outputErrorCode | string | The error code returned by the Confirm Sales Meeting action. |
| outputErrorMessage | string | The error message returned by the Confirm Sales Meeting action. |
Usage
Sample Input
1{
2 "inputs": [
3 {
4 "meetingRequestId": "0MRXX00000001ABCDE",
5 "meetingTime": "1752566400000"
6 }
7 ]
8}Sample Output
1{
2 "outputs": [
3 {
4 "meetingStatus": "Success"
5 }
6 ]
7}For more information about this invocable action, see Sales | Return Calendar Link and Sales | Send Meeting Request in the Agentforce Standard Action Reference and Flow Core Actions: Generate Sales Meeting Link Action in Salesforce Help.