Dynamic variables for integration services

Overview 
 Dynamic variable substitution allows you to insert contextual values into integration service configurations. Variables are referenced using double curly braces syntax: {{ variable_name }} . 
 Available Variables 
 The following variables are available for use in integration service configurations: 
 
 
 
 Variable Name 
 Description 
 
 
 
 
 username 
 Username entered or assigned to the user 
 
 
 password 
 Password entered or assigned to the user 
 
 
 email 
 Email address entered or configured for the user 
 
 
 user__first_name 
 First name of the user. If the user has both a first and middle name, both will be included 
 
 
 user__last_name 
 Last name of the user. If the user has two last names, both will be included 
 
 
 user__first_first_name 
 First name of the user only 
 
 
 user__second_first_name 
 Middle name of the user 
 
 
 user__first_last_name 
 First last name of the user 
 
 
 user__second_last_name 
 Second last name of the user 
 
 
 user__external_id 
 External ID field for the user 
 
 
 user__date_joined 
 User's join date 
 
 
 user__aaa_profile 
 Name of the first AAA profile configured for the user 
 
 
 org_short_name 
 Short name of the portal page organization 
 
 
 location 
 Name of the current location of the user 
 
 
 now_formatted 
 Current date/time in ISO format: YYYY-MM-DDTHH:MM:SSZ 
 
 
 
 Usage Examples 
 To use a variable in your integration service configuration, enclose the variable name in double curly braces: 
 User: {{ username }}
Email: {{ email }}
Location: {{ location }}
Timestamp: {{ now_formatted }}
 
 Dynamic Variables in Redirection URLs 
 TBC