GET v1/{Client}/BodyTypes/{BodyTypeId}
Gets one Body Type.
Request Information
URI Parameters
Name | Description | Type | Additional 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
GranicusBodyTypeName | Description | Type | Additional 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-12-21T10:53:25.9171594-05: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-12-21T10:53:25.9171594-05: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-12-21T10:53:25.9171594-05:00","BodyTypeRowVersion":"QEA=","BodyTypeName":"sample string 4"});