GET api/ShipmentSurveyQuestion/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
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": "9867aaae-4fb1-41b3-84c7-7dc26080dc66",
"SID": "e907587f-2cf5-4ce0-8cd5-353d6ae245c1",
"Name": "sample string 3",
"Checked": true,
"SortVal": 1,
"ShipmentField": "sample string 5",
"AddToCategory": "sample string 6"
}
application/xml, text/xml
Sample:
<ShipmentSurveyQuestion xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Estimate.Models"> <AddToCategory>sample string 6</AddToCategory> <Checked>true</Checked> <ID>9867aaae-4fb1-41b3-84c7-7dc26080dc66</ID> <Name>sample string 3</Name> <SID>e907587f-2cf5-4ce0-8cd5-353d6ae245c1</SID> <ShipmentField>sample string 5</ShipmentField> <SortVal>1</SortVal> </ShipmentSurveyQuestion>