POST api/Order/WriteComment
“WriteComment”的文档。
Request Information
Parameters
| Name | Description | Additional information |
|---|---|---|
| model | “model”的文档。 |
Define this parameter in the request body. |
Request body formats
application/json, text/json
Sample:
{
"Oid": 1,
"Uid": "sample string 2",
"Content": "sample string 3",
"Level": 4
}
application/xml, text/xml
Sample:
<CommentModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TyretoolMail.Models"> <Content>sample string 3</Content> <Level>4</Level> <Oid>1</Oid> <Uid>sample string 2</Uid> </CommentModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Response body formats
application/json, text/json
Sample:
1
application/xml, text/xml
Sample:
<int xmlns="http://schemas.microsoft.com/2003/10/Serialization/">1</int>