Creates a new HotMark on the specified recording.
Authorizations: Recordings - EDIT
Requests
POST /apis/recordings/:recordingId/hotmarks
{
"timestamp": 2000,
"title": "HotMark1",
"description": "Training Session"
}
Response
Success
{
"data": {
"timestamp": 2000,
"title": "HotMark1",
"description": "Training Session",
"id": "ed6397d0-e947-4604-84f2-96b9ca68d72a"
"username":"jsmith",
"userDisplayName":"John Smith"
}
}
Parameters
|
Property |
JSON Type |
Property Type |
Description |
|---|---|---|---|
|
id |
String |
Immutable |
Identifies the HotMark. Generated by HMP. |
|
timestamp |
Number |
Required for videos. Optional (for POST) for active recordings. |
Time in milliseconds to which the HotMark is set. Defaults to current timestamp for active recordings. Note HotMark timestamps have a one-second resolution. |
|
title |
String |
Required |
Title of the HotMark. |
|
description |
String |
Optional |
Description of the HotMark. |
|
username |
String |
Immutable |
The user's login name, e.g., bsmith |
|
userDisplayName |
String |
Ignored |
The user’s friendly name, e.g., Bob Smith |
Error
|
Code |
Payload |
Description |
|---|---|---|
|
|
|
Recording with UUID |
|
|
|
Supplied data was insufficient or incorrect. |
|
|
|
HotMark already exists at this timestamp. |
|
|
|
Active recording not found. |