GET v1/{Client}/Matters/{MatterId}/Indexes/{MatterIndexId}

Gets one Matter Index associated with a specific Matter.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
Client

The code of the Client database to connect to.

string

Required

MatterId

integer

Required

MatterIndexId

The MatterIndexId of the Matter Index.

integer

Required

Body Parameters

None.

Response Information

Resource Description

GranicusMatterIndex
NameDescriptionTypeAdditional information
MatterIndexId

integer

None.

MatterIndexGuid

string

None.

MatterIndexLastModifiedUtc

date

None.

MatterIndexRowVersion

Collection of byte

None.

MatterIndexMatterId

integer

Required

MatterIndexIndexId

integer

Required

MatterIndexName

string

None.

Response Formats

application/json, text/json

Sample:
{
  "MatterIndexId": 1,
  "MatterIndexGuid": "sample string 2",
  "MatterIndexLastModifiedUtc": "2024-04-24T06:28:47.7566838-04:00",
  "MatterIndexRowVersion": "QEA=",
  "MatterIndexMatterId": 4,
  "MatterIndexIndexId": 5,
  "MatterIndexName": "sample string 6"
}

application/xml, text/xml

Sample:
<GranicusMatterIndex xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/LegistarWebAPI.Models.v1">
  <MatterIndexGuid>sample string 2</MatterIndexGuid>
  <MatterIndexId>1</MatterIndexId>
  <MatterIndexIndexId>5</MatterIndexIndexId>
  <MatterIndexLastModifiedUtc>2024-04-24T06:28:47.7566838-04:00</MatterIndexLastModifiedUtc>
  <MatterIndexMatterId>4</MatterIndexMatterId>
  <MatterIndexName>sample string 6</MatterIndexName>
  <MatterIndexRowVersion>QEA=</MatterIndexRowVersion>
</GranicusMatterIndex>

text/javascript, application/javascript, application/json-p

Sample:
({"MatterIndexId":1,"MatterIndexGuid":"sample string 2","MatterIndexLastModifiedUtc":"2024-04-24T06:28:47.7566838-04:00","MatterIndexRowVersion":"QEA=","MatterIndexMatterId":4,"MatterIndexIndexId":5,"MatterIndexName":"sample string 6"});