Ver.No: {{=response.verNo}}
Function Overview
Name | Return type | Parameters in encoding | Parameters |
---|---|---|---|
getAppl | Any type | No | appl |
getHelp | text/html | No | appl, page, lang, title, subtitle |
getResource | Any type | No | file_name, lang, file_type, content |
exportToExcel | application/vnd.ms-excel | Optional: amf or base64 | code, sheet, view |
exportToICalendar | text/ics | Optional: no or base64 | code, database, username, password, calnumber, alldata |
exportToReport | Optional | Optional: no or base64 | code, database, username, password, reportcode, filters, output, orientation, size, printername, copies |
createDataBackup | Optional | Optional: no or base64 | code, database, username, password, btype, bformat, lst_nom, filename |
restoreDataBackup | text/html | Optional: no or base64 | code, database, username, password, filename, bfile |
Function Details
getAppl(appl::String) ::Any type |
Redirect to the static/resources/application/appl file. The result is the redirected file. |
getHelp(appl::String, page::String, lang::String=en, title::String='', subtitle::String='') ::text/html |
Returns the
views/help/appl/
lang/page.html file. The result is an html file. |
getResource(file_name::String, lang::String='', file_type::String='html', content::String='') ::Any type |
Returns the
static/resources/file_name_
lang.file_type file. Example: The result is the requested file. |
exportToExcel(code::String, sheet::Object, view::Object)::application/vnd.ms-excel |
Is not supported. Only compatibility. Use the getData function of NDI (output=excel)! |
exportToICalendar(code::String, database::String, username::String, password::String, calnumber::String, alldata::String='') ::text/ics |
code: base64 or none or
missing. If the value is "base64", all other parameters are encoded in base64. Only to be used if the database (and the user) NDI or NPI access enabled! Example: The result is an iCalendar file. |
exportToReport(code::String, database::String, username::String, password::String, reportcode::String, filters::String, output::String='html', orientation::String='P', size::String='A4', printername::String='', copies::Integer=1) ::Optional |
code: base64 or none or
missing. If the value is "base64", all other parameters are encoded in base64. Only to be used if the database (and the user) NDI or NPI access enabled! Example: The result is a
|
createDataBackup(code::String, database::String, username::String, password::String, bformat::String='backup', filename::String='') ::Optional |
Creates a customer data backup, and returns a process report or
the backup file. Independent of the database type and version of
the NAS server.. Only to be used if the database (and the user) NDI or NPI access enabled! Example: The result is a process report or the backup (XML) file. |
restoreDataBackup(code::String, database::String, username::String, password::String, filename::String='', bfile::file='') ::text/html |
Restores a backup or xml file. Only to be used if the database (and the user) NDI or NPI access enabled! Example: The result is a process report. |