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