Get Single- and multiselect values of address fields

Resource type: confignewaddressfields

The values of singleselect and multiselect fields of the address module can be read out.

Parameters:

  • fieldname
    Field name of a singleselect or multiselect address field.

Example:

1
2
3
4
5
6
7
8
9
{
    "actionid": "urn:onoffice-de-ns:smart:2.5:smartml:action:get",
    "resourceid": "fieldvalues",
    "identifier": "",
    "resourcetype": "confignewaddressfields",
    "parameters": {
        "fieldname": "Land"
    }
}

Response parameters:

  • id
    ID of the key value
  • title
    Label of the key value

Response snippet:

1
2
3
4
5
6
7
8
9
...
                        {
                            "id": "DEU",
                            "type": "",
                            "elements": {
                                "title": "Deutschland"
                            }
                        },
...