Confirm Sales Meeting
Confirms a meeting time that's part of a request to get available meeting time
slots.
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.