GET api/BaseTableEmployee?user={user}&password={password}&applicationName={applicationName}
Met dit request kan de stamtabel met werknemers 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 |
|---|---|---|---|
| BaseTableEmployee |
Stamtabel aantal werknemers |
Verzameling van EmployeeItem |
Geen |
Response Formats
application/json, text/json
Voorbeeld:
{
"BaseTableEmployee": [
{
"EmployeeID": "voorbeeld string 1",
"Description": "voorbeeld string 2"
},
{
"EmployeeID": "voorbeeld string 1",
"Description": "voorbeeld string 2"
}
]
}
application/xml, text/xml
Voorbeeld:
<BaseTableEmployeeResult xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<BaseTableEmployee>
<EmployeeItem>
<EmployeeID>voorbeeld string 1</EmployeeID>
<Description>voorbeeld string 2</Description>
</EmployeeItem>
<EmployeeItem>
<EmployeeID>voorbeeld string 1</EmployeeID>
<Description>voorbeeld string 2</Description>
</EmployeeItem>
</BaseTableEmployee>
</BaseTableEmployeeResult>