User Attribute Reference
User Attributes are what make up a user's identity within Moveworks. Moveworks exposes these attributes to be used in API requests & launch options for ease of development.
List of available User Attributes
name | description | type |
---|---|---|
first_name | The user's first name | string |
last_name | The user's last name | string |
email_addr | The user's email | string |
role | The user's role | string |
department | The user's department | string |
manager_email | The user's manager email | string |
full_name | The user's full name | string |
employee_id | The user's employee ID | string |
cost_center_id | The user's cost center ID | string |
cost_center_name | The user's cost center name | string |
work_status | The user's work status | enum |
country_code | The user's country code | string |
timezone | The user's timezone | string |
region | The user's region | string |
city | The user's city | string |
state | The user's state | string |
user_tags | The user's assigned user tags | enum |
external_system_identities | The user's system related info | map |
work_status enum
The work status field is composed of the following predefined options
options |
---|
UNKNOWN_WORK_STATUS |
CONTINGENT |
INTERN |
FULL_TIME |
user_tags enum
The user tags field is composed of the following predefined options:
options |
---|
UNKNOWN_USER_TAG |
BASIC_USER |
VIP |
FIELD_AGENT |
KNOWLEDGE_WORKER |
IT_AGENT |
TESTER |
SUPPORTED_LANGUAGE_USER |
SERVICE_ACCOUNT |
CALL_CENTER |
HAS_ACCESS_TO_BOT |
DIRECTOR |
EXECUTIVE |
SOCIAL_AUTH_USER |
external_system_identities map
The external system identities map has the shape of <string, ExternalSystemIdentity> which can be interpreted as a dictionary with a string key such as jira_service_desk
and an object as its value. The objects composes of the following fields:
fields | description |
---|---|
user_id | The user ID to log into the external system |
external_id | The user UUID in the external system |
Updated 15 days ago