GET api/Answer/GetById?id={id}&token={token}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
|
| token | string |
Required |
Body Parameters
None.
Response Information
Resource Description
MDLAnswer| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| Answer | string |
None. |
|
| Identifier | string |
None. |
|
| Comment | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Id": 1,
"Answer": "sample string 2",
"Identifier": "sample string 3",
"Comment": "sample string 4"
}
application/xml, text/xml
Sample:
<MDLAnswer xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Asanus.BarCon.Middleware.Shared.ComplaintsManagement"> <Answer>sample string 2</Answer> <Comment>sample string 4</Comment> <Id>1</Id> <Identifier>sample string 3</Identifier> </MDLAnswer>