GET api/attributereferences/{id}
Get a AttributeReference by id.
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
id |
The primary key of the AttributeReference in the Hobsons database. |
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
AttributeReferenceDtoName | Description | Type | Additional information |
---|---|---|---|
Id |
The primary key of the record in the database. |
integer |
None. |
Name |
Name of the AttrbiteReference. |
string |
None. |
Value |
Value of the AttrbiteReference. The datatype of the value provided must conform to the datatype set in the AttributeMetaData. This value is ignored for updates. |
Object |
None. |
Inactive | boolean |
None. |
|
SortOrder |
An assigned numerical value to control the order of how the AttributeReference is displayed in a sorted list in an application. |
integer |
None. |
Response Formats
application/json, text/json
Sample:
{ "Id": 1, "Name": "sample string 2", "Value": {}, "Inactive": true, "SortOrder": 1 }