GET api/SnapshotFields/Get/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
SnapshotFieldModel| Name | Description | Type | Additional information |
|---|---|---|---|
| ID | integer |
None. |
|
| SnapSection | string |
None. |
|
| SnapColumn | string |
None. |
|
| Field | string |
None. |
|
| ColumnID | integer |
None. |
|
| ColNum | integer |
None. |
|
| RowNum | integer |
None. |
|
| ColSpan | integer |
None. |
|
| TableID | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"ID": 1,
"SnapSection": "sample string 2",
"SnapColumn": "sample string 3",
"Field": "sample string 4",
"ColumnID": 5,
"ColNum": 6,
"RowNum": 7,
"ColSpan": 8,
"TableID": 9
}
text/xml
Sample:
<SnapshotFieldModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Navigator.Models"> <ColNum>6</ColNum> <ColSpan>8</ColSpan> <ColumnID>5</ColumnID> <Field>sample string 4</Field> <ID>1</ID> <RowNum>7</RowNum> <SnapColumn>sample string 3</SnapColumn> <SnapSection>sample string 2</SnapSection> <TableID>9</TableID> </SnapshotFieldModel>