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 

InputTypeDescription
meetingRequestIdstringRequired. The ID of the meeting request associated with a Get Available Meeting Times request.
meetingTimestringRequired. The meeting time in epoch milliseconds corresponding to the selected start time.

Outputs 

OutputTypeDescription
meetingStatusstringThe status of the meeting scheduling attempt.
outputErrorCodestringThe error code returned by the Confirm Sales Meeting action.
outputErrorMessagestringThe 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}

If an error occurs, the output includes outputErrorCode and outputErrorMessage fields instead of meetingStatus.

Note

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.