Forms

Get infos about available forms. The infos are generated based on the existing vue files in /src/forms/. Only forms visible to the current user are returned.

URL : /api/v1/app/forms/

URL Parameters : None

Method : GET

Auth required : YES

Permissions required : None

Data constraints: None

Data example : None

Success Response

Code : 200 OK

Content example

{
    "Core": [
        {
            "key": "cores",
            "label": "Cores",
            "Component": "CoresForm.vue",
            "dataModel": "CoresForm",
            "module": "Core"
        },
        {
            "key": "init-gas",
            "label": "Init-gas",
            "Component": "InitGasForm.vue",
            "dataModel": "InitGasForm",
            "module": "Core"
        },
        {
            "key": "section",
            "label": "Section",
            "Component": "SectionForm.vue",
            "dataModel": "SectionForm",
            "module": "Core"
        }
    ]
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25