GET customattributes/{customAttributeID}
Get a single Custom Attribute.
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
customAttributeID | The Custom Attribute ID to retrieve. | integer | Required |
Body Parameters
None.
Response Information
Resource Description
Get a single Custom Attribute.
CustomAttributeBaseModelName | Description | Type | Additional information |
---|---|---|---|
CustomAttributeID | The ID of the custom attribute. | integer | None. |
CustomAttributeName | The custom attributes name. | string | None. |
Response Formats
application/json, text/json
Sample:
{ "TotalItems": 2, "PagingInfo": { "PageSize": 1, "Page": 1 }, "TotalPages": 1, "Data": [ { "CustomAttributeID": 1, "CustomAttributeName": "Style" }, { "CustomAttributeID": 2, "CustomAttributeName": "Batteries Included" } ] }
application/xml, text/xml
Sample:
<PagedCustomAttributeModel xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <TotalItems>2</TotalItems> <PagingInfo> <PageSize>1</PageSize> <Page>1</Page> </PagingInfo> <TotalPages>1</TotalPages> <Data> <CustomAttributeBaseModel> <CustomAttributeID>1</CustomAttributeID> <CustomAttributeName>Style</CustomAttributeName> </CustomAttributeBaseModel> <CustomAttributeBaseModel> <CustomAttributeID>2</CustomAttributeID> <CustomAttributeName>Batteries Included</CustomAttributeName> </CustomAttributeBaseModel> </Data> </PagedCustomAttributeModel>