PUT api/training/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | globally unique identifier |
Required |
Body Parameters
TrainingVideo| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
None. |
|
| Name | string |
None. |
|
| VideoEmbed | string |
None. |
|
| Active | boolean |
None. |
|
| SortOrder | integer |
None. |
|
| CategoryName | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"Id": "482e7644-1bb7-4b7d-8052-49f38c1788c2",
"Name": "sample string 2",
"VideoEmbed": "sample string 3",
"Active": true,
"SortOrder": 5,
"CategoryName": "sample string 6"
}
application/xml, text/xml
Sample:
<TrainingVideo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/UEP.Core.Models"> <Active>true</Active> <CategoryName>sample string 6</CategoryName> <Id>482e7644-1bb7-4b7d-8052-49f38c1788c2</Id> <Name>sample string 2</Name> <SortOrder>5</SortOrder> <VideoEmbed>sample string 3</VideoEmbed> </TrainingVideo>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.