GET v1/{Client}/MatterTypes/{MatterTypeId}

Gets one Matter Type.

Request Information

URI Parameters

NameDescriptionTypeAdditional 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
NameDescriptionTypeAdditional 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": "2024-04-19T12:21:20.7092433-04: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>2024-04-19T12:21:20.7092433-04: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":"2024-04-19T12:21:20.7092433-04:00","MatterTypeRowVersion":"QEA=","MatterTypeName":"sample string 4","MatterTypeSort":5,"MatterTypeActiveFlag":6,"MatterTypeDescription":"sample string 7","MatterTypeUsedFlag":8});