GET api/Themas
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| api_key |
api_key is een verplicht veld |
string | |
| id |
id is een optioneel veld |
string |
Hier kan een id van een thema worden meegegeven Dit is een tekstuele waarde van 3 cijfers |
| filter |
filter is een optioneel veld |
string |
Hier kan een filter worden meegegeven waarmee gezocht wordt binnen themanaam en thema id |
| paginanummer |
paginanummer is een optioneel veld |
integer |
Hier kan een paginanummer worden meegegeven Als deze leeg is retourneren we pagina 1. |
| paginagrootte |
paginagrootte is een optioneel veld |
integer |
Hier kan een paginagrootte worden meegegeven Als deze leeg is retourneren we 500 regels per pagina. |
Body Parameters
None.
Response Information
Resource Description
Themas| Name | Description | Type | Additional information |
|---|---|---|---|
| Resultaat | Resultaat | ||
| Themas | Collection of Thema |
Response Formats
application/json, text/json
Sample:
{
"Resultaat": {
"Resultaat": "sample string 1",
"Melding": "sample string 2"
},
"Themas": [
{
"ID": "sample string 1",
"Naam": "sample string 2"
},
{
"ID": "sample string 1",
"Naam": "sample string 2"
}
]
}
application/xml, text/xml
Sample:
<Themas xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TFGService.Models.Controllers">
<Resultaat xmlns:d2p1="http://schemas.datacontract.org/2004/07/TFGService.Models">
<d2p1:Melding>sample string 2</d2p1:Melding>
<d2p1:Resultaat>sample string 1</d2p1:Resultaat>
</Resultaat>
<Themas>
<Thema>
<ID>sample string 1</ID>
<Naam>sample string 2</Naam>
</Thema>
<Thema>
<ID>sample string 1</ID>
<Naam>sample string 2</Naam>
</Thema>
</Themas>
</Themas>