GET v1/{Client}/MatterTypes/{MatterTypeId}
Gets one Matter Type.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| Client |
The code of the Client database to connect to. |
string |
Required |
| MatterTypeId |
The Id of the Matter Type. |
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
GranicusMatterType| Name | Description | Type | Additional information |
|---|---|---|---|
| MatterTypeId | integer |
None. |
|
| MatterTypeGuid | string |
None. |
|
| MatterTypeLastModifiedUtc | date |
None. |
|
| MatterTypeRowVersion | Collection of byte |
None. |
|
| MatterTypeName | string |
Required |
|
| MatterTypeSort | integer |
None. |
|
| MatterTypeActiveFlag | integer |
None. |
|
| MatterTypeDescription | string |
None. |
|
| MatterTypeUsedFlag | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"MatterTypeId": 1,
"MatterTypeGuid": "sample string 2",
"MatterTypeLastModifiedUtc": "2025-11-03T13:55:41.9458693-05:00",
"MatterTypeRowVersion": "QEA=",
"MatterTypeName": "sample string 4",
"MatterTypeSort": 5,
"MatterTypeActiveFlag": 6,
"MatterTypeDescription": "sample string 7",
"MatterTypeUsedFlag": 8
}
application/xml, text/xml
Sample:
<GranicusMatterType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/LegistarWebAPI.Models.v1"> <MatterTypeActiveFlag>6</MatterTypeActiveFlag> <MatterTypeDescription>sample string 7</MatterTypeDescription> <MatterTypeGuid>sample string 2</MatterTypeGuid> <MatterTypeId>1</MatterTypeId> <MatterTypeLastModifiedUtc>2025-11-03T13:55:41.9458693-05:00</MatterTypeLastModifiedUtc> <MatterTypeName>sample string 4</MatterTypeName> <MatterTypeRowVersion>QEA=</MatterTypeRowVersion> <MatterTypeSort>5</MatterTypeSort> <MatterTypeUsedFlag>8</MatterTypeUsedFlag> </GranicusMatterType>
text/javascript, application/javascript, application/json-p
Sample:
({"MatterTypeId":1,"MatterTypeGuid":"sample string 2","MatterTypeLastModifiedUtc":"2025-11-03T13:55:41.9458693-05:00","MatterTypeRowVersion":"QEA=","MatterTypeName":"sample string 4","MatterTypeSort":5,"MatterTypeActiveFlag":6,"MatterTypeDescription":"sample string 7","MatterTypeUsedFlag":8});