GET v1/{Client}/CodeSections/{CodeSectionId}
Gets one Code Section.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| Client |
The code of the Client database to connect to. |
string |
Required |
| CodeSectionId |
The Id of the Code Section. |
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
GranicusCodeSection| Name | Description | Type | Additional information |
|---|---|---|---|
| CodeSectionId | integer |
None. |
|
| CodeSectionGuid | string |
None. |
|
| CodeSectionLastModifiedUtc | date |
None. |
|
| CodeSectionRowVersion | Collection of byte |
None. |
|
| CodeSectionNumber | string |
None. |
|
| CodeSectionName | string |
None. |
|
| CodeSectionActiveFlag | integer |
None. |
|
| CodeSectionUsedFlag | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"CodeSectionId": 1,
"CodeSectionGuid": "sample string 2",
"CodeSectionLastModifiedUtc": "2025-11-05T21:59:06.8149748-05:00",
"CodeSectionRowVersion": "QEA=",
"CodeSectionNumber": "sample string 4",
"CodeSectionName": "sample string 5",
"CodeSectionActiveFlag": 6,
"CodeSectionUsedFlag": 7
}
application/xml, text/xml
Sample:
<GranicusCodeSection xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/LegistarWebAPI.Models.v1"> <CodeSectionActiveFlag>6</CodeSectionActiveFlag> <CodeSectionGuid>sample string 2</CodeSectionGuid> <CodeSectionId>1</CodeSectionId> <CodeSectionLastModifiedUtc>2025-11-05T21:59:06.8149748-05:00</CodeSectionLastModifiedUtc> <CodeSectionName>sample string 5</CodeSectionName> <CodeSectionNumber>sample string 4</CodeSectionNumber> <CodeSectionRowVersion>QEA=</CodeSectionRowVersion> <CodeSectionUsedFlag>7</CodeSectionUsedFlag> </GranicusCodeSection>
text/javascript, application/javascript, application/json-p
Sample:
({"CodeSectionId":1,"CodeSectionGuid":"sample string 2","CodeSectionLastModifiedUtc":"2025-11-05T21:59:06.8149748-05:00","CodeSectionRowVersion":"QEA=","CodeSectionNumber":"sample string 4","CodeSectionName":"sample string 5","CodeSectionActiveFlag":6,"CodeSectionUsedFlag":7});