GET api/ShipmentSurveyQuestions/{id}?SurveyID={SurveyID}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| SurveyID | globally unique identifier |
Required |
|
| id | string |
None. |
Body Parameters
None.
Response Information
Resource Description
Collection of ShipmentSurveyQuestion| Name | Description | Type | Additional information |
|---|---|---|---|
| ID | globally unique identifier |
None. |
|
| SID | globally unique identifier |
None. |
|
| Name | string |
None. |
|
| Checked | boolean |
None. |
|
| SortVal | integer |
None. |
|
| ShipmentField | string |
None. |
|
| AddToCategory | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"ID": "d54bc270-9f8e-43c8-95fd-dd94fd2a61e5",
"SID": "f03a786c-f2c1-432d-9f4c-f4e72aeb2a7c",
"Name": "sample string 3",
"Checked": true,
"SortVal": 1,
"ShipmentField": "sample string 5",
"AddToCategory": "sample string 6"
},
{
"ID": "d54bc270-9f8e-43c8-95fd-dd94fd2a61e5",
"SID": "f03a786c-f2c1-432d-9f4c-f4e72aeb2a7c",
"Name": "sample string 3",
"Checked": true,
"SortVal": 1,
"ShipmentField": "sample string 5",
"AddToCategory": "sample string 6"
}
]
application/xml, text/xml
Sample:
<ArrayOfShipmentSurveyQuestion xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Estimate.Models">
<ShipmentSurveyQuestion>
<AddToCategory>sample string 6</AddToCategory>
<Checked>true</Checked>
<ID>d54bc270-9f8e-43c8-95fd-dd94fd2a61e5</ID>
<Name>sample string 3</Name>
<SID>f03a786c-f2c1-432d-9f4c-f4e72aeb2a7c</SID>
<ShipmentField>sample string 5</ShipmentField>
<SortVal>1</SortVal>
</ShipmentSurveyQuestion>
<ShipmentSurveyQuestion>
<AddToCategory>sample string 6</AddToCategory>
<Checked>true</Checked>
<ID>d54bc270-9f8e-43c8-95fd-dd94fd2a61e5</ID>
<Name>sample string 3</Name>
<SID>f03a786c-f2c1-432d-9f4c-f4e72aeb2a7c</SID>
<ShipmentField>sample string 5</ShipmentField>
<SortVal>1</SortVal>
</ShipmentSurveyQuestion>
</ArrayOfShipmentSurveyQuestion>