POST api/UserMasters/ReplyComment
Request Information
URI Parameters
None.
Body Parameters
CommentModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| Username | string |
None. |
|
| Reply | string |
None. |
|
| string |
None. |
Request Formats
application/json, text/json
Sample:
{
"Id": 1,
"Username": "sample string 2",
"Reply": "sample string 3",
"Email": "sample string 4"
}
application/xml, text/xml
Sample:
<CommentModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SpellingAPI.Models"> <Email>sample string 4</Email> <Id>1</Id> <Reply>sample string 3</Reply> <Username>sample string 2</Username> </CommentModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
integerResponse Formats
application/json, text/json
Sample:
1
application/xml, text/xml
Sample:
<int xmlns="http://schemas.microsoft.com/2003/10/Serialization/">1</int>