POST Provider/Training/VideoLog
Log training step video time for the Provider.
Request Information
URI Parameters
None.
Body Parameters
ParaTrainVideoLogName | Description | Type | Additional information |
---|---|---|---|
TrainStepId | integer |
None. |
|
MaxPlayTime | decimal number |
None. |
|
CurrentPlayTime | decimal number |
None. |
|
IsComplete | boolean |
None. |
Request Formats
application/json, text/json
Sample:
{ "TrainStepId": 1, "MaxPlayTime": 2.0, "CurrentPlayTime": 3.0, "IsComplete": true }
application/xml, text/xml
Sample:
<ParaTrainVideoLog xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/API.Models"> <CurrentPlayTime>3</CurrentPlayTime> <IsComplete>true</IsComplete> <MaxPlayTime>2</MaxPlayTime> <TrainStepId>1</TrainStepId> </ParaTrainVideoLog>
Response Information
Resource Description
ParaIntegerName | Description | Type | Additional information |
---|---|---|---|
iValue | integer |
None. |
Response Formats
application/json, text/json
Sample:
{ "iValue": 1 }
application/xml, text/xml
Sample:
<ParaInteger xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/API.Models"> <iValue>1</iValue> </ParaInteger>