ServiceNow User Create
Version 1
This handler allows you to create a new user on Service Now. It takes the input parameters and then passes them in a REST call to Service Now to create the user.
Parameters
Name |
Description |
User Id |
Username of the person |
First Name |
First name of the user |
Last Name |
Last name of the user |
Title |
Title of the user |
Department Id |
Id of the department |
Password |
password for the user if needed |
Password Needs Reset |
Select if you would like to require the user to reset their password |
Locked Out |
Select this if you would like the user to be locked out at first |
Active |
Select this if you would like the user to be active immediately |
Date Format |
How dates will appear to the user |
Email |
Email address of the user |
Time Zone |
Timezone used by this user |
Business Phone |
Primary business phone number for the user |
Mobile Phone |
Mobile/Cell phone number of the user |
Sample Configuration
Name |
Description |
User Id |
john.doe |
First Name |
John |
Last Name |
Doe |
Title |
Manager |
Department Id |
148128sd8f7871899sd98f |
Password |
pass01 |
Password Needs Reset |
yes |
Locked Out |
no |
Active |
yes |
Date Format |
yyyy-MM-dd |
Email |
john.doe@example.com |
Time Zone |
US/Central |
Business Phone |
555-555-5555 |
Mobile Phone |
666-666-6666 |
Results
Name |
Description |
Sys Id |
The unique system id of the new user is returned |
Changelog
Servicenow User Create V1.1 (2017-09-21)
- Moving from the Service Now JSON Web Service (no longer supported) to the REST API.
Servicenow User Create V1 (2013-07-29)
- Initial version. See README for details.
Related Handlers
- ServiceNow Change Create
- This handler allows you to create a new change request on Service Now.
- ServiceNow Change Retrieve
- This handler allows you to retrieve a change request from Service Now.
- ServiceNow Change Update
- This handler allows you to update a change request on Service Now.
- ServiceNow Group Create
- Creates a new Service Now user group.
- ServiceNow Group Retrieve
- Retrieves a Service Now user group
- ServiceNow Group Update
- Updates an existing Service Now user group.
- ServiceNow Incident Create
- ServiceNow, create a new incident.
- ServiceNow Incident Retrieve
- This handler allows you to retrieve an incident from Service Now.
- ServiceNow Incident Search
- Search for a Service Now incident.
- ServiceNow Incident Update
- ServiceNow, update an incident.
- ServiceNow Object Create
- Generically creates an object from a ServiceNow table when given a table name and a JSON body
- ServiceNow Object Delete
- Generically deletes an object from a ServiceNow table when given a table name and an id
- ServiceNow Object Retrieve
- Generically retrieves an object from a ServiceNow table when given a table name and an id
- ServiceNow Object Update
- Generically updates an object in a ServiceNow table when given a table name, a id, and a JSON body containing the parts of the object that should be updated.
- ServiceNow User Retrieve
- ServiceNow, retrieve a user id for system user.
- ServiceNow User Update
- ServiceNow, update an existing user.