GET rest/PossibleValues/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
PossibleValueModel| Name | Description | Type | Additional information |
|---|---|---|---|
| ID | integer |
None. |
|
| Name | string |
None. |
|
| ColumnID | integer |
None. |
|
| CreateDate | date |
None. |
|
| ModifiedDate | date |
None. |
Response Formats
application/json, text/json
Sample:
{
"ID": 1,
"Name": "sample string 2",
"ColumnID": 3,
"CreateDate": "2026-04-02T19:23:58.2073621+00:00",
"ModifiedDate": "2026-04-02T19:23:58.2073621+00:00"
}
text/xml
Sample:
<PossibleValueModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Navigator.Models"> <ColumnID>3</ColumnID> <CreateDate>2026-04-02T19:23:58.2073621+00:00</CreateDate> <ID>1</ID> <ModifiedDate>2026-04-02T19:23:58.2073621+00:00</ModifiedDate> <Name>sample string 2</Name> </PossibleValueModel>