POST subMessageGD

发送回复信息(旧版本)

Request Information

URI Parameters

None.

Body Parameters

MessageGDModel
NameDescriptionTypeAdditional information
Mid

是哪个信息表的ID (yixianMessage.id)

string

None.

OpenID

发送人的OpenID

string

None.

Message

回复的内容

string

None.

files

附件,如果有多个用逗号分隔

string

None.

Request Formats

application/json, text/json

Sample:
{
  "Mid": "sample string 1",
  "OpenID": "sample string 2",
  "Message": "sample string 3",
  "files": "sample string 4"
}

application/xml, text/xml

Sample:
<MessageGDModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/API.Controllers">
  <Message>sample string 3</Message>
  <Mid>sample string 1</Mid>
  <OpenID>sample string 2</OpenID>
  <files>sample string 4</files>
</MessageGDModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

BackMessage
NameDescriptionTypeAdditional information
sign

标志

boolean

None.

message

信息

string

None.

Response Formats

application/json, text/json

Sample:
{
  "sign": true,
  "message": "sample string 2"
}

application/xml, text/xml

Sample:
<BackMessage xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/API.Models">
  <message>sample string 2</message>
  <sign>true</sign>
</BackMessage>