Download
Last stable v 5.2 2024-11-01
API URL | /mnu/rel/:id |
Description | Menu/collection/language items sharing same page list DataTable() object server side RESTFul API |
Access | Restricted to roles: admin, demo |
Rquest method | GET | POST |
Request data type | Request variables |
Request URL data |
|
Request GET/POST data |
Variables automatically issued by DataTable() object for server side backend:
|
Response type | JSON |
Response data |
{
'draw': 'sequence number', // ex. '1'
'recordsTotal': 'total records in DB menu/collection/language table', // ex. '13'
'recordsFiltered': 'total records in DB menu/collection/language table', // ex. '13'
'data':[
[
'No', // sequence no ex. '1'
'menu/collection/language id in DB table', // ex. '1'
'item-type', // 'menu' | 'collection' | 'language'
'item-label', // menu/collection/language label
'language-code', // ex. 'eng', if empty: '-'
'last update editor name', // ex. 'Linkoln Edgar', 'CMS' - if cms builtin administrator
'last update timestamp' // ex. '2013-09-02 15:04:33'
]
...
],
'rc': '0',
'msg': 'success'
}
|