POST api/Values/VideoCategoryBasedlist
Request Information
URI Parameters
None.
Body Parameters
VideoTable| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
None. |
|
| Category | string |
None. |
|
| VideoName | string |
None. |
|
| VideoUrl | string |
None. |
|
| InsertDate | date |
None. |
Request Formats
application/json, text/json
Sample:
{
"id": 1,
"Category": "sample string 2",
"VideoName": "sample string 3",
"VideoUrl": "sample string 4",
"InsertDate": "2026-05-13T11:32:40.2638923+05:30"
}
application/xml, text/xml
Sample:
<VideoTable xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Delphitvs_catalog_json"> <Category>sample string 2</Category> <InsertDate>2026-05-13T11:32:40.2638923+05:30</InsertDate> <VideoName>sample string 3</VideoName> <VideoUrl>sample string 4</VideoUrl> <id>1</id> </VideoTable>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
Output| Name | Description | Type | Additional information |
|---|---|---|---|
| result | string |
None. |
|
| msg | string |
None. |
|
| data | Object |
None. |
Response Formats
application/json, text/json
Sample:
{
"result": "sample string 1",
"msg": "sample string 2",
"data": {}
}
application/xml, text/xml
Sample:
<Output xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Delphitvs_catalog_json"> <data /> <msg>sample string 2</msg> <result>sample string 1</result> </Output>