Connector reference rapidvalue.eu โ†’

๐ŸŽซ ServiceNow

ServiceNow โ€” IT service management (ITSM) platform. Provisioning target for users, groups, roles.

Identification

Supported auth methods

Importable objects (4)

Object types the wizard offers to import out of the box.

Users (sys_user)

All active users. Remove active=true to include inactive users.

Default field mappings:

IGA field Expression Required
business_id {{ sys_id }} โœ“
identity_id {{ user_name }} โœ“
email {{ email }}
first_name {{ first_name }}
last_name {{ last_name }}
display_name {{ first_name }} {{ last_name }}
function {{ title }}
department {{ department.name }}
manager_id {{ manager.user_name }}
location {{ location }}
company {{ company }}
status {{ 'active' if active == 'true' else 'suspended' }}
native_account_name {{ user_name }} โœ“
identity_business_id {{ email|if_null(user_name)|lower }}
is_privileged {{ false }}
servicenow_id {{ sys_id }}

User Groups (sys_user_group)

ServiceNow groups โ€” used for ticket assignment + access control.

Default field mappings:

IGA field Expression Required
business_id {{ sys_id }} โœ“
name {{ name }} โœ“
description {{ description }}
native_identifier {{ sys_id }}
risk_level {{ 'high' if ('admin' in (name or '')|lower or 'security' in (name or '')|lower) else 'low' }}
type {{ type }}
status {{ 'active' if active == 'true' else 'inactive' }}
privileged {{ 'admin' in (name or '')|lower or 'security' in (name or '')|lower }}

Roles (sys_user_role)

ServiceNow roles โ€” fine-grained access. admin is the most privileged.

Default field mappings:

IGA field Expression Required
business_id {{ sys_id }} โœ“
name {{ name }} โœ“
description {{ description }}
native_identifier {{ sys_id }}
risk_level {{ 'critical' if (name == 'admin') else ('high' if elevated_privilege == 'true' else 'medium') }}
privileged {{ elevated_privilege == 'true' or name == 'admin' }}

Group memberships (sys_user_grmember)

Which user belongs to which group? For reconciliation.

Default field mappings:

IGA field Expression Required
business_id {{ sys_id }} โœ“
identity_business_id {{ user.user_name }} โœ“
entitlement_business_id {{ group.name }} โœ“

Onboarding setup checklist

Create a dedicated integration user in ServiceNow with the 'rest_service' + 'admin' (or, more granularly: user_admin + role_admin) roles, and retrieve the instance URL. ~10 minutes.

Estimated time: ~10 min. The wizard exposes this checklist as a drawer (๐Ÿ“‹ button) during onboarding. See the Onboarding wizard walkthrough for context.