GET api/BaseTableBranche?user={user}&password={password}&applicationName={applicationName}
Met dit request kan de stamtabel met branches opgevraagd worden.
Request Information
URI Parameters
| Naam | Omschrijving | Type | Extra informatie |
|---|---|---|---|
| user |
E-mailadres van Mijn DATA-collectief account. |
string |
Vereist |
| password |
Wachtwoord API koppeling. |
string |
Vereist |
| applicationName |
Applicatienaam API koppeling. |
string |
Vereist |
Body Parameters
None.
Response Information
| Naam | Omschrijving | Type | Extra informatie |
|---|---|---|---|
| BaseTableBranche |
Stamtabel branches |
Verzameling van BrancheItem |
Geen |
Response Formats
application/json, text/json
Voorbeeld:
{
"BaseTableBranche": [
{
"BrancheID": "voorbeeld string 1",
"Description": "voorbeeld string 2"
},
{
"BrancheID": "voorbeeld string 1",
"Description": "voorbeeld string 2"
}
]
}
application/xml, text/xml
Voorbeeld:
<BaseTableBrancheResult xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<BaseTableBranche>
<BrancheItem>
<BrancheID>voorbeeld string 1</BrancheID>
<Description>voorbeeld string 2</Description>
</BrancheItem>
<BrancheItem>
<BrancheID>voorbeeld string 1</BrancheID>
<Description>voorbeeld string 2</Description>
</BrancheItem>
</BaseTableBranche>
</BaseTableBrancheResult>