GET api/Bestand
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| api_key |
api_key is een verplicht veld |
string | |
| id |
id is een verplicht veld |
globally unique identifier |
Hier moet het ID van het bestand worden meegegeven |
Body Parameters
None.
Response Information
Resource Description
Bestand| Name | Description | Type | Additional information |
|---|---|---|---|
| Resultaat | Resultaat | ||
| ID | globally unique identifier | ||
| BestandsNaam | string | ||
| Bestand | string |
Response Formats
application/json, text/json
Sample:
{
"Resultaat": {
"Resultaat": "sample string 1",
"Melding": "sample string 2"
},
"ID": "dcee3936-d46a-4a56-8cce-0ae78d3c087a",
"BestandsNaam": "sample string 1",
"Bestand": "sample string 2"
}
application/xml, text/xml
Sample:
<Bestand xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TFGService.Models.Controllers">
<Bestand>sample string 2</Bestand>
<BestandsNaam>sample string 1</BestandsNaam>
<ID>dcee3936-d46a-4a56-8cce-0ae78d3c087a</ID>
<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>
</Bestand>