Apex API to Start Replay
- 28 Jun 2021
- 1 読む分
- 印刷する
- 闇光
- PDF
Apex API to Start Replay
- 更新日 28 Jun 2021
- 1 読む分
- 印刷する
- 闇光
- PDF
The content is currently unavailable in Ja - 日本語. You are viewing the default English version.
記事の要約
この要約は役に立ちましたか?
ご意見ありがとうございます
You can use the example code below to create a Replay session using Apex API's from a Case object record. You can call this in a Flow for any event
//create the newSessionParams
screenmeet.ScreenMeetAPI.ScreenMeetSessionParams newSessionParams = new screenmeet.ScreenMeetAPI.ScreenMeetSessionParams(
'replay', //session type
'5001R00000xgLmIQAU', //parentObjectId
'case', //owner object type
UserInfo.getUserId(), //Logged in user ID
'My Support Session', //session description
UserInfo.getName() //name of currently logged in USER
);
//make the REST API call to create the session
screenmeet.ScreenMeetApi.createSession(newSessionParams);
For a full list of available ScreenMeet Apex API's, visit the Apex API Reference page.
この記事は役に立ちましたか?