GET api/survey/{numOrd}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| numOrd | string |
Required |
Body Parameters
None.
Response Information
Resource Description
ResponseSurvey| Name | Description | Type | Additional information |
|---|---|---|---|
| IdFormAnswerTestata | integer |
None. |
|
| UserKey | globally unique identifier |
None. |
|
| IdAppointment | integer |
None. |
|
| Esito | string |
None. |
|
| Message | string |
None. |
|
| Timestamp | date |
None. |
|
| Response | Collection of FormAnswer |
None. |
Response Formats
application/json, text/json
Sample:
{
"idFormAnswerTestata": 1,
"userKey": "f682e9e7-55d0-48d1-9b58-b786f9a49bb8",
"idAppointment": 3,
"esito": "sample string 4",
"message": "sample string 5",
"timestamp": "2025-10-29T09:32:22.7608534+01:00",
"response": [
{
"idFormQuestion": 1,
"question": "sample string 2",
"answer": 3,
"label": "sample string 4",
"type": "sample string 5"
},
{
"idFormQuestion": 1,
"question": "sample string 2",
"answer": 3,
"label": "sample string 4",
"type": "sample string 5"
}
]
}
text/plain
Sample:
{"idFormAnswerTestata":1,"userKey":"f682e9e7-55d0-48d1-9b58-b786f9a49bb8","idAppointment":3,"esito":"sample string 4","message":"sample string 5","timestamp":"2025-10-29T09:32:22.7608534+01:00","response":[{"idFormQuestion":1,"question":"sample string 2","answer":3,"label":"sample string 4","type":"sample string 5"},{"idFormQuestion":1,"question":"sample string 2","answer":3,"label":"sample string 4","type":"sample string 5"}]}
application/xml, text/xml
Sample:
<ResponseSurvey xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ePrice.MarketPlaceApi.Models.User">
<Esito>sample string 4</Esito>
<IdAppointment>3</IdAppointment>
<IdFormAnswerTestata>1</IdFormAnswerTestata>
<Message>sample string 5</Message>
<Response>
<FormAnswer>
<Answer>3</Answer>
<IdFormQuestion>1</IdFormQuestion>
<Label>sample string 4</Label>
<Question>sample string 2</Question>
<Type>sample string 5</Type>
</FormAnswer>
<FormAnswer>
<Answer>3</Answer>
<IdFormQuestion>1</IdFormQuestion>
<Label>sample string 4</Label>
<Question>sample string 2</Question>
<Type>sample string 5</Type>
</FormAnswer>
</Response>
<Timestamp>2025-10-29T09:32:22.7608534+01:00</Timestamp>
<UserKey>f682e9e7-55d0-48d1-9b58-b786f9a49bb8</UserKey>
</ResponseSurvey>
application/octet-stream
Sample:
{"IdFormAnswerTestata":1,"UserKey":"f682e9e7-55d0-48d1-9b58-b786f9a49bb8","IdAppointment":3,"Esito":"sample string 4","Message":"sample string 5","Timestamp":"2025-10-29T09:32:22.7608534+01:00","Response":[{"IdFormQuestion":1,"Question":"sample string 2","Answer":3,"Label":"sample string 4","Type":"sample string 5"},{"IdFormQuestion":1,"Question":"sample string 2","Answer":3,"Label":"sample string 4","Type":"sample string 5"}]}
text/javascript, application/javascript, application/json-p
Sample:
({"idFormAnswerTestata":1,"userKey":"f682e9e7-55d0-48d1-9b58-b786f9a49bb8","idAppointment":3,"esito":"sample string 4","message":"sample string 5","timestamp":"2025-10-29T09:32:22.7608534+01:00","response":[{"idFormQuestion":1,"question":"sample string 2","answer":3,"label":"sample string 4","type":"sample string 5"},{"idFormQuestion":1,"question":"sample string 2","answer":3,"label":"sample string 4","type":"sample string 5"}]});