| FRAMES | NO FRAMES | Description | Parameters | Examples | Response |
| URL | http://<extended-properties-url>/<tableName>/listValues |
|---|---|
| Parent Resource | Extended Properties |
domain attribute of an extended property record to determine if a given field has an associated domain.
| Parameter | Details |
|---|---|
| f | Description: The response format. The default response format is html. Values: html | json |
| user | Required Description: The username of the client. |
| field | Required Description: The field name of the extended property for which to retrieve values. |
Example 1: URL for listing the values of field "JTXX_CUSTOMERS.TYPE" of job ID 5 in the "Workflow" service on sampleserver.
http://sampleserver/arcgis/rest/services/Workflow/WMServer/jobs/5/extendedProperties/JTXX_CUSTOMERS/listValues?user=cjones&field=TYPE
{
"values": [
{ "value": <value1>, "description": "<description1>" },
{ "value": <value2>, "description": "<description2>" },
...
]
}
{
"values": [
{ "value": 1, "description": "New customer" },
{ "value": 2, "description": "Existing customer" },
{ "value": 3, "description": "Not a customer" }
]
}