GET api/Bestand

Request Information

URI Parameters

NameDescriptionTypeAdditional 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
NameDescriptionTypeAdditional 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": "682936c4-6607-4777-9926-d278040bb9a7",
  "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>682936c4-6607-4777-9926-d278040bb9a7</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>