POST api/ShortVideo/Post_Shortcomment
Request Information
URI Parameters
None.
Body Parameters
ShortVideoComment| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| UserId | integer |
None. |
|
| ShortVideoId | integer |
None. |
|
| Shortcomment | string |
None. |
|
| Date | date |
None. |
Request Formats
application/json, text/json
Sample:
{
"Id": 1,
"UserId": 2,
"ShortVideoId": 3,
"Shortcomment": "sample string 4",
"Date": "2026-04-20T19:14:56.4422779+05:30"
}
application/xml, text/xml
Sample:
<ShortVideoComment xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IOTT_API.Models"> <Date>2026-04-20T19:14:56.4422779+05:30</Date> <Id>1</Id> <ShortVideoId>3</ShortVideoId> <Shortcomment>sample string 4</Shortcomment> <UserId>2</UserId> </ShortVideoComment>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |