get_user
Retrieve specific user details from ServiceNow using user ID, username, or email address to access user information and manage user records.
Instructions
Get a specific user in ServiceNow
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| No | Email address of the user | ||
| user_id | No | User ID or sys_id | |
| user_name | No | Username of the user |
Input Schema (JSON Schema)
{
"properties": {
"email": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Email address of the user",
"title": "Email"
},
"user_id": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "User ID or sys_id",
"title": "User Id"
},
"user_name": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Username of the user",
"title": "User Name"
}
},
"type": "object"
}