POST api/Media/PostAnswer

Request Information

URI Parameters

None.

Body Parameters

PostAnswerEntity
NameDescriptionTypeAdditional information
objectType

integer

None.

objectId

string

None.

infoId

integer

None.

answerContent

string

None.

infoContent

string

None.

recvInfoTime

date

None.

Request Formats

application/json, text/json

Sample:
{
  "objectType": 1,
  "objectId": "sample string 2",
  "infoId": 3,
  "answerContent": "sample string 4",
  "infoContent": "sample string 5",
  "recvInfoTime": "2025-04-20 06:49:27"
}

application/xml, text/xml

Sample:
<PostAnswerEntity xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WisdomMobileCar.Model">
  <answerContent>sample string 4</answerContent>
  <infoContent>sample string 5</infoContent>
  <infoId>3</infoId>
  <objectId>sample string 2</objectId>
  <objectType>1</objectType>
  <recvInfoTime>2025-04-20T06:49:27.7891336+08:00</recvInfoTime>
</PostAnswerEntity>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

ApiInfoEntityOfObject
NameDescriptionTypeAdditional information
data

Object

None.

code

integer

None.

msg

string

None.

Response Formats

application/json, text/json

Sample:
{
  "data": {},
  "code": 2,
  "msg": "sample string 3"
}

application/xml, text/xml

Sample:
<ApiInfoEntityOfanyType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WisdomMobileCar.Model">
  <Code>2</Code>
  <Message>sample string 3</Message>
  <Data />
</ApiInfoEntityOfanyType>