GET api/VideoMaster/Details/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
VideoMaster| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| VideoName | string |
None. |
|
| VideoUrl | string |
None. |
|
| Description | string |
None. |
|
| VideoImage | string |
None. |
|
| UploadedBy | string |
None. |
|
| ActiveStatus | boolean |
None. |
Response Formats
application/json, text/json
Sample:
{
"Id": 1,
"VideoName": "sample string 2",
"VideoUrl": "sample string 3",
"Description": "sample string 4",
"VideoImage": "sample string 5",
"UploadedBy": "sample string 6",
"ActiveStatus": true
}
application/xml, text/xml
Sample:
<VideoMaster xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PolyClinicClass"> <ActiveStatus>true</ActiveStatus> <Description>sample string 4</Description> <Id>1</Id> <UploadedBy>sample string 6</UploadedBy> <VideoImage>sample string 5</VideoImage> <VideoName>sample string 2</VideoName> <VideoUrl>sample string 3</VideoUrl> </VideoMaster>