GET Provider/Training/{SystemLanguageId}
Get the list of training steps for the Provider
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
SystemLanguageId | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
ResultTrainStepsName | Description | Type | Additional information |
---|---|---|---|
TrainStatusCodeId | integer |
None. |
|
TrainSteps | Collection of ResultTrainStep |
None. |
Response Formats
application/json, text/json
Sample:
{ "TrainStatusCodeId": 1, "TrainSteps": [ { "TrainStepId": 1, "Title": "sample string 2", "HTMLText": "sample string 3", "VideoURL": "sample string 4", "CurrentPlayTime": 5.0, "MaxPlayTime": 6.0, "IsComplete": true }, { "TrainStepId": 1, "Title": "sample string 2", "HTMLText": "sample string 3", "VideoURL": "sample string 4", "CurrentPlayTime": 5.0, "MaxPlayTime": 6.0, "IsComplete": true } ] }
application/xml, text/xml
Sample:
<ResultTrainSteps xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/API.Models"> <TrainStatusCodeId>1</TrainStatusCodeId> <TrainSteps> <ResultTrainStep> <CurrentPlayTime>5</CurrentPlayTime> <HTMLText>sample string 3</HTMLText> <IsComplete>true</IsComplete> <MaxPlayTime>6</MaxPlayTime> <Title>sample string 2</Title> <TrainStepId>1</TrainStepId> <VideoURL>sample string 4</VideoURL> </ResultTrainStep> <ResultTrainStep> <CurrentPlayTime>5</CurrentPlayTime> <HTMLText>sample string 3</HTMLText> <IsComplete>true</IsComplete> <MaxPlayTime>6</MaxPlayTime> <Title>sample string 2</Title> <TrainStepId>1</TrainStepId> <VideoURL>sample string 4</VideoURL> </ResultTrainStep> </TrainSteps> </ResultTrainSteps>