Get User
servicenow_get_userFetch a ServiceNow user's full record using username, email, or sys_id, including roles, department, and manager.
Instructions
Get a ServiceNow user by username, email, or sys_id.
Args:
identifier (string): Username (jdoe), email (jdoe@company.com), or sys_id
response_format: Output format
Returns: Full user record including sys_id, name, email, department, manager, roles
Examples:
Get by username → identifier="jdoe"
Get by email → identifier="jdoe@example.com"
Get by sys_id → identifier="abc123def456..."
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| identifier | Yes | Username, email, or sys_id | |
| response_format | No | Output format: 'markdown' (default) for human-readable or 'json' for structured data | markdown |