POST api/zupu/caseApp
Request Information
URI Parameters
None.
Body Parameters
queryZupuDto| Name | Description | Type | Additional information |
|---|---|---|---|
| page | integer |
None. |
|
| userId | string |
None. |
|
| TITLE | string |
None. |
|
| text | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"page": 1,
"userId": "sample string 2",
"TITLE": "sample string 3",
"text": "sample string 4"
}
application/xml, text/xml
Sample:
<queryZupuDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Wu.Entity.dto"> <TITLE>sample string 3</TITLE> <page>1</page> <text>sample string 4</text> <userId>sample string 2</userId> </queryZupuDto>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ResultEntity| Name | Description | Type | Additional information |
|---|---|---|---|
| code | integer |
None. |
|
| data | Object |
None. |
|
| msg | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"code": 1,
"data": {},
"msg": "sample string 3"
}
application/xml, text/xml
Sample:
<ResultEntity xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Wu.API"> <code>1</code> <data /> <msg>sample string 3</msg> </ResultEntity>