GET v1/{Client}/CodeSections

Gets all Code Sections.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
Client

The code of the Client database to connect to.

string

Required

Body Parameters

None.

Response Information

Resource Description

Collection of GranicusCodeSection
NameDescriptionTypeAdditional 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": "2024-03-28T17:40:33.6447902-04:00",
    "CodeSectionRowVersion": "QEA=",
    "CodeSectionNumber": "sample string 4",
    "CodeSectionName": "sample string 5",
    "CodeSectionActiveFlag": 6,
    "CodeSectionUsedFlag": 7
  },
  {
    "CodeSectionId": 1,
    "CodeSectionGuid": "sample string 2",
    "CodeSectionLastModifiedUtc": "2024-03-28T17:40:33.6447902-04:00",
    "CodeSectionRowVersion": "QEA=",
    "CodeSectionNumber": "sample string 4",
    "CodeSectionName": "sample string 5",
    "CodeSectionActiveFlag": 6,
    "CodeSectionUsedFlag": 7
  }
]

application/xml, text/xml

Sample:
<ArrayOfGranicusCodeSection xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/LegistarWebAPI.Models.v1">
  <GranicusCodeSection>
    <CodeSectionActiveFlag>6</CodeSectionActiveFlag>
    <CodeSectionGuid>sample string 2</CodeSectionGuid>
    <CodeSectionId>1</CodeSectionId>
    <CodeSectionLastModifiedUtc>2024-03-28T17:40:33.6447902-04:00</CodeSectionLastModifiedUtc>
    <CodeSectionName>sample string 5</CodeSectionName>
    <CodeSectionNumber>sample string 4</CodeSectionNumber>
    <CodeSectionRowVersion>QEA=</CodeSectionRowVersion>
    <CodeSectionUsedFlag>7</CodeSectionUsedFlag>
  </GranicusCodeSection>
  <GranicusCodeSection>
    <CodeSectionActiveFlag>6</CodeSectionActiveFlag>
    <CodeSectionGuid>sample string 2</CodeSectionGuid>
    <CodeSectionId>1</CodeSectionId>
    <CodeSectionLastModifiedUtc>2024-03-28T17:40:33.6447902-04:00</CodeSectionLastModifiedUtc>
    <CodeSectionName>sample string 5</CodeSectionName>
    <CodeSectionNumber>sample string 4</CodeSectionNumber>
    <CodeSectionRowVersion>QEA=</CodeSectionRowVersion>
    <CodeSectionUsedFlag>7</CodeSectionUsedFlag>
  </GranicusCodeSection>
</ArrayOfGranicusCodeSection>

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

Sample:
([{"CodeSectionId":1,"CodeSectionGuid":"sample string 2","CodeSectionLastModifiedUtc":"2024-03-28T17:40:33.6447902-04:00","CodeSectionRowVersion":"QEA=","CodeSectionNumber":"sample string 4","CodeSectionName":"sample string 5","CodeSectionActiveFlag":6,"CodeSectionUsedFlag":7},{"CodeSectionId":1,"CodeSectionGuid":"sample string 2","CodeSectionLastModifiedUtc":"2024-03-28T17:40:33.6447902-04:00","CodeSectionRowVersion":"QEA=","CodeSectionNumber":"sample string 4","CodeSectionName":"sample string 5","CodeSectionActiveFlag":6,"CodeSectionUsedFlag":7}]);