Movenium REST API 1.1

Documentation

forms

Call: GET /forms (ie. GET /forms)

Can also be called with additional query-strings:


GET /forms?show=names

Includes field names in "name" tag


Response includes all the forms with their fields and settings. Forms also contains current user privileges.


Call returns:

example if forms are found

status: 200

{
    "forms": {
        "user": {
            "objects": {
                "lastname": {
                    "type": "textbox",
                    "features": {
                        "mandatory": "true",
                    }
                },
                "firstname": {
                    "type": "textbox",
                    "features": null
                },
            ...
            },
            "privileges": {
                "add": true,
                "edit": true,
                "remove": true
            }
        },
        ...
    }
}