GET api/ContactMe/GetByID/{ID}
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
ID | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
ContactMeName | Description | Type | Additional information |
---|---|---|---|
ID | integer |
None. |
|
content | string |
None. |
|
wx | integer |
None. |
|
integer |
None. |
||
string |
None. |
||
tel | integer |
None. |
|
ctime | date |
None. |
|
solve | boolean |
None. |
|
answer | string |
None. |
|
ctimeAnswer | date |
None. |
Response Formats
application/json, text/json
Sample:
{ "ID": 1, "content": "sample string 2", "wx": 3, "qq": 4, "email": "sample string 5", "tel": 6, "ctime": "2023-09-26T20:08:37.528425+08:00", "solve": true, "answer": "sample string 9", "ctimeAnswer": "2023-09-26T20:08:37.5293494+08:00" }
application/xml, text/xml
Sample:
<ContactMe xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/webApi.Models"> <ID>1</ID> <answer>sample string 9</answer> <content>sample string 2</content> <ctime>2023-09-26T20:08:37.528425+08:00</ctime> <ctimeAnswer>2023-09-26T20:08:37.5293494+08:00</ctimeAnswer> <email>sample string 5</email> <qq>4</qq> <solve>true</solve> <tel>6</tel> <wx>3</wx> </ContactMe>