GET api/Signaal

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of Womsignaal
NameDescriptionTypeAdditional information
Id

integer

None.

Starttijd

integer

None.

Eindtijd

integer

None.

type

string

None.

Doorsturen

boolean

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Id": 1,
    "Starttijd": 2,
    "Eindtijd": 3,
    "type": "sample string 4",
    "Doorsturen": true
  },
  {
    "Id": 1,
    "Starttijd": 2,
    "Eindtijd": 3,
    "type": "sample string 4",
    "Doorsturen": true
  }
]

application/xml, text/xml

Sample:
<ArrayOfWomsignaal xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/woboxapi.Models">
  <Womsignaal>
    <Doorsturen>true</Doorsturen>
    <Eindtijd>3</Eindtijd>
    <Id>1</Id>
    <Starttijd>2</Starttijd>
    <type>sample string 4</type>
  </Womsignaal>
  <Womsignaal>
    <Doorsturen>true</Doorsturen>
    <Eindtijd>3</Eindtijd>
    <Id>1</Id>
    <Starttijd>2</Starttijd>
    <type>sample string 4</type>
  </Womsignaal>
</ArrayOfWomsignaal>