GET api/TicklerType

Returns building notes

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of TicklerTypeViewModel
NameDescriptionTypeAdditional information
Id

integer

None.

HasDiaryNotes

boolean

None.

Code

string

None.

Description

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "id": 1,
    "hasDiaryNotes": true,
    "code": "sample string 3",
    "description": "sample string 4"
  },
  {
    "id": 1,
    "hasDiaryNotes": true,
    "code": "sample string 3",
    "description": "sample string 4"
  }
]

application/xml, text/xml

Sample:
<ArrayOfTicklerTypeViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CamAcctApi.ViewModels">
  <TicklerTypeViewModel>
    <Code>sample string 3</Code>
    <Description>sample string 4</Description>
    <HasDiaryNotes>true</HasDiaryNotes>
    <Id>1</Id>
  </TicklerTypeViewModel>
  <TicklerTypeViewModel>
    <Code>sample string 3</Code>
    <Description>sample string 4</Description>
    <HasDiaryNotes>true</HasDiaryNotes>
    <Id>1</Id>
  </TicklerTypeViewModel>
</ArrayOfTicklerTypeViewModel>