GET api/OptionSetValues?entityName={entityName}&attribute={attribute}
Returns the options set values available for the specified attrbute of the entity.
Possible Service Responses:
200/OK - Option Set values found and returned in the body of the response.
404/Option Sets Not Found - no option set found for the specified entity and attribute.
500/Internal Server - unexpected server error, details in the body of the response.
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
entityName | System.String |
Required |
|
attribute | System.String |
Required |
Body Parameters
None.
Response Information
Resource Description
System.Collections.Generic.List`1[Altai.Web.Services.Models.OptionSetValue]Name | Description | Type | Additional information |
---|---|---|---|
Id | System.String |
None. |
|
Name | System.String |
None. |
Response Formats
application/json, text/json
Sample:
[ { "Id": "sample string 1", "Name": "sample string 2" }, { "Id": "sample string 1", "Name": "sample string 2" } ]
application/xml, text/xml
Sample:
<ArrayOfOptionSetValue xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Altai.Web.Services.Models"> <OptionSetValue> <Id>sample string 1</Id> <Name>sample string 2</Name> </OptionSetValue> <OptionSetValue> <Id>sample string 1</Id> <Name>sample string 2</Name> </OptionSetValue> </ArrayOfOptionSetValue>