GET customattributes?CustomAttributeName={CustomAttributeName}&PageSize={PageSize}&Page={Page}
Get a paged list of Custom attributes. Allows a wildcard filter on name.
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
CustomAttributeName | This is an optional parameter. It will do a wildcard search for the custom attribute name. | string | None. |
PageSize | This is an optional parameter. This will default to 100. The max page size is 100 | integer | Range: inclusive between 1 and 100 |
Page | This is an optional parameter. It will default to page 1. | integer | Matching regular expression pattern: ^[1-9]\d*$ |
Body Parameters
None.
Response Information
Resource Description
Get a paged list of Custom attributes. Allows a wildcard filter on name.
PagedResponseModelOfCustomAttributeBaseModelName | Description | Type | Additional information |
---|---|---|---|
TotalItems | integer | None. | |
PagingInfo | PagingFilter | None. | |
TotalPages | integer | None. | |
Data | Collection of CustomAttributeBaseModel | None. |
Response Formats
application/json, text/json
Sample:
{ "CustomAttributeID": 1, "CustomAttributeName": "Style" }
application/xml, text/xml
Sample:
<CustomAttributeBaseModel xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <CustomAttributeID>1</CustomAttributeID> <CustomAttributeName>Style</CustomAttributeName> </CustomAttributeBaseModel>