Documentation
Call: GET /forms (ie. GET /forms)
Can also be called with additional query-strings:
GET /forms?show=namesIncludes field names in "name" tag
Response includes all the forms with their fields and settings. Forms also contains current user privileges.
Call returns:
status: 200
{
"forms": {
"user": {
"objects": {
"lastname": {
"type": "textbox",
"features": {
"mandatory": "true",
}
},
"firstname": {
"type": "textbox",
"features": null
},
...
},
"privileges": {
"add": true,
"edit": true,
"remove": true
}
},
...
}
}