GET v1/{Client}/BodyTypes/{BodyTypeId}

Gets one Body Type.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
Client

The code of the Client database to connect to.

string

Required

BodyTypeId

The Id of the Body Type.

integer

Required

Body Parameters

None.

Response Information

Resource Description

GranicusBodyType
NameDescriptionTypeAdditional information
BodyTypeId

integer

None.

BodyTypeGuid

string

None.

BodyTypeLastModifiedUtc

date

None.

BodyTypeRowVersion

Collection of byte

None.

BodyTypeName

string

Required

Response Formats

application/json, text/json

Sample:
{
  "BodyTypeId": 1,
  "BodyTypeGuid": "sample string 2",
  "BodyTypeLastModifiedUtc": "2024-04-18T22:18:57.8355273-04:00",
  "BodyTypeRowVersion": "QEA=",
  "BodyTypeName": "sample string 4"
}

application/xml, text/xml

Sample:
<GranicusBodyType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/LegistarWebAPI.Models.v1">
  <BodyTypeGuid>sample string 2</BodyTypeGuid>
  <BodyTypeId>1</BodyTypeId>
  <BodyTypeLastModifiedUtc>2024-04-18T22:18:57.8355273-04:00</BodyTypeLastModifiedUtc>
  <BodyTypeName>sample string 4</BodyTypeName>
  <BodyTypeRowVersion>QEA=</BodyTypeRowVersion>
</GranicusBodyType>

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

Sample:
({"BodyTypeId":1,"BodyTypeGuid":"sample string 2","BodyTypeLastModifiedUtc":"2024-04-18T22:18:57.8355273-04:00","BodyTypeRowVersion":"QEA=","BodyTypeName":"sample string 4"});