GET api/attributecategories?name={name}&domainCode={domainCode}
Get all AttributeCategory optionally filtered by any of the arguments specified in the query string.
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
name |
Optional case-insensitive filter on AttributeCategory with a name that matches the provided value. |
string |
None. |
domainCode |
Optional filter on AttributeCategory with a domainCode that matches the provided value. |
integer |
None. |
Body Parameters
None.
Response Information
Resource Description
AttributeCategoryDtoName | Description | Type | Additional information |
---|---|---|---|
Id |
The primary key of the record in the Hobsons database. |
integer |
None. |
Name |
Name of the AttributeCategory. |
string |
None. |
DomainCode |
DomainCode of the AttributeCategory. |
integer |
None. |
Response Formats
application/json, text/json
Sample:
{ "Id": 1, "Name": "sample string 2", "DomainCode": 3 }