Profile Tag Whitelist

Profile Tag Whitelist

N2FE provides a number of flow nodes that allow for the manipulation of profile fields. In order to allow users to manipulate a profile field it must first be defined.

Currently the following nodes support profile tag whitelisting:

The list of Profile tags which a user is allowed to access is configured in the “profile_tag_whitelist” configuration field in n2fe.xml.

N2FE Service Configuration

When manipulating the value of a profile tag, the flow node needs to know what valid profile tags exist.

These profile tags must be configured in the configuration file /etc/jarvis/n2fe.xml. Within the habitat configuration XML element the following JSON fragment can be altered as required.

"profile_tag_whitelist": [
    {
        "name": "Network Calling Number"
        , "profile_tag": 327683
        , "profile_block": 18
    }
    , {
        "name": "Calling Party"
        , "profile_tag": 327686
        , "profile_block": 18 
    }
],
Name Description
name [Required] The display name presented to the user when selecting a profile tag to manipulate.
profile_block [Required] The profile block of the profile tag that will be manipulated.
profile_tag [Required] The profile tag that will be manipulated.