POST api/sys/msgSecCheckPost

Request Information

URI Parameters

None.

Body Parameters

msgCheckDto
NameDescriptionTypeAdditional information
content

string

None.

Request Formats

application/json, text/json

Sample:
{
  "content": "sample string 1"
}

application/xml, text/xml

Sample:
<msgCheckDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Wu.API">
  <content>sample string 1</content>
</msgCheckDto>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

ResultEntity
NameDescriptionTypeAdditional 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>