Fields

Get fields

This query retrieves the list of fields of the application.

This call provides all the lists registered on the server. The fields being considered as a list, they are part of the response sent by the server.

Here is the structure returned by the server:

{
    "list_name" : {
        "first_list_elem_id" : {
            "displayed_element" : {
                "eng" : "English content",
                "fra" : "Contenu en français",
                
            }
        },
        "second_list_elem_id" : {
            "displayed_element" : {
                "eng" : "English content",
                "fra" : "Contenu en français",
                
            }
        }
    },
    "list_name2":{
        
    },
    
}

Please note that displayed_value holds the value of the list item in all languages supported by the application. It is also possible to have additional information for each list.

GET https://app.netw4ppl.tech/api/fields

This query retrieves the list of fields of the application.

Headers

Name
Type
Description

Application-id*

String

Authorization*

String

Bearer {Token API}

Last updated