2022-08-17 08:50:24 -07:00
import { INodeProperties } from 'n8n-workflow' ;
2021-07-15 10:30:59 -07:00
2021-12-03 00:44:16 -08:00
export const userOperations : INodeProperties [ ] = [
2021-07-15 10:30:59 -07:00
{
displayName : 'Operation' ,
name : 'operation' ,
type : 'options' ,
2022-04-02 08:22:13 -07:00
noDataExpression : true ,
2021-07-15 10:30:59 -07:00
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'user' ] ,
2021-07-15 10:30:59 -07:00
} ,
} ,
options : [
{
name : 'Create' ,
value : 'create' ,
2022-07-10 13:50:51 -07:00
action : 'Create a user' ,
2021-07-15 10:30:59 -07:00
} ,
{
name : 'Delete' ,
value : 'delete' ,
2022-07-10 13:50:51 -07:00
action : 'Delete a user' ,
2021-07-15 10:30:59 -07:00
} ,
{
name : 'Get' ,
value : 'get' ,
2022-07-10 13:50:51 -07:00
action : 'Get a user' ,
2021-07-15 10:30:59 -07:00
} ,
{
2022-09-07 07:51:14 -07:00
name : 'Get Many' ,
2021-07-15 10:30:59 -07:00
value : 'getAll' ,
2022-09-08 08:10:13 -07:00
action : 'Get many users' ,
2021-07-15 10:30:59 -07:00
} ,
{
name : 'Update' ,
value : 'update' ,
2022-07-10 13:50:51 -07:00
action : 'Update a user' ,
2021-07-15 10:30:59 -07:00
} ,
] ,
default : 'get' ,
} ,
2021-12-03 00:44:16 -08:00
] ;
2021-07-15 10:30:59 -07:00
2021-12-03 00:44:16 -08:00
export const userFields : INodeProperties [ ] = [
2021-07-15 10:30:59 -07:00
/* -------------------------------------------------------------------------- */
/* user:create */
/* -------------------------------------------------------------------------- */
{
displayName : 'Short Description' ,
name : 'short_description' ,
type : 'string' ,
default : '' ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'user' ] ,
operation : [ 'create' ] ,
2021-07-15 10:30:59 -07:00
} ,
} ,
required : true ,
description : 'Short description of the user' ,
} ,
{
displayName : 'Additional Fields' ,
name : 'additionalFields' ,
type : 'collection' ,
placeholder : 'Add Field' ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'user' ] ,
operation : [ 'create' ] ,
2021-07-15 10:30:59 -07:00
} ,
} ,
default : { } ,
options : [
{
displayName : 'Active' ,
name : 'active' ,
type : 'boolean' ,
2022-04-02 08:22:13 -07:00
default : false ,
2021-07-15 10:30:59 -07:00
description : 'Whether to activate the user' ,
} ,
{
displayName : 'Building' ,
name : 'building' ,
type : 'string' ,
default : '' ,
description : 'The Building address' ,
} ,
{
displayName : 'City' ,
name : 'city' ,
type : 'string' ,
default : '' ,
description : 'City of the user' ,
} ,
{
displayName : 'Company' ,
name : 'company' ,
type : 'string' ,
default : '' ,
description : 'The name of the company for the user' ,
} ,
{
displayName : 'Country' ,
name : 'country' ,
type : 'string' ,
default : '' ,
description : 'Country of the user' ,
} ,
{
displayName : 'Department' ,
name : 'department' ,
type : 'string' ,
default : '' ,
description : 'Department of the user' ,
} ,
{
displayName : 'Email' ,
name : 'email' ,
type : 'string' ,
2022-06-20 07:54:01 -07:00
placeholder : 'name@email.com' ,
2021-07-15 10:30:59 -07:00
default : '' ,
description : 'The email address associated with the user' ,
} ,
{
displayName : 'First Name' ,
name : 'first_name' ,
type : 'string' ,
default : '' ,
description : 'The first name of the user' ,
} ,
{
displayName : 'Gender' ,
name : 'gender' ,
type : 'string' ,
default : '' ,
description : 'The gender of the user' ,
} ,
{
displayName : 'Home Phone' ,
name : 'home_phone' ,
type : 'string' ,
default : '' ,
description : 'Home phone of the user' ,
} ,
{
displayName : 'Last Name' ,
name : 'last_name' ,
type : 'string' ,
default : '' ,
description : 'The last name of the user' ,
} ,
{
displayName : 'Location' ,
name : 'location' ,
type : 'string' ,
default : '' ,
description : 'Location of the user' ,
} ,
{
displayName : 'Manager' ,
name : 'manager' ,
type : 'string' ,
default : '' ,
description : 'Manager of the user' ,
} ,
{
displayName : 'Middle Name' ,
name : 'middle_name' ,
type : 'string' ,
default : '' ,
description : 'The middle name of the user' ,
} ,
{
displayName : 'Mobile Phone' ,
name : 'mobile_phone' ,
type : 'string' ,
default : '' ,
description : 'Mobile phone number of the user' ,
} ,
{
displayName : 'Password' ,
name : 'user_password' ,
type : 'string' ,
default : '' ,
2022-08-17 08:50:24 -07:00
description : "The user's password" ,
2021-07-15 10:30:59 -07:00
} ,
{
displayName : 'Password Needs Reset' ,
name : 'password_needs_reset' ,
type : 'boolean' ,
2022-04-02 08:22:13 -07:00
default : false ,
2021-07-15 10:30:59 -07:00
description : 'Whether to require a password reset when the user logs in' ,
} ,
{
displayName : 'Phone' ,
name : 'phone' ,
type : 'string' ,
default : '' ,
description : 'The main phone number of the user' ,
} ,
{
2022-06-20 07:54:01 -07:00
displayName : 'Role Names or IDs' ,
2021-07-15 10:30:59 -07:00
name : 'roles' ,
type : 'multiOptions' ,
typeOptions : {
loadOptionsMethod : 'getUserRoles' ,
} ,
2022-04-02 08:22:13 -07:00
default : [ ] ,
2022-08-17 08:50:24 -07:00
description :
'Roles of the user. Choose from the list, or specify IDs using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.' ,
2021-07-15 10:30:59 -07:00
} ,
{
displayName : 'Source' ,
name : 'source' ,
type : 'string' ,
default : '' ,
} ,
{
displayName : 'State' ,
name : 'state' ,
type : 'string' ,
default : '' ,
description : 'State for the user' ,
} ,
{
displayName : 'Street' ,
name : 'street' ,
type : 'string' ,
default : '' ,
description : 'Street information for the user separated by comma' ,
} ,
{
displayName : 'Username' ,
name : 'user_name' ,
type : 'string' ,
default : '' ,
2022-04-02 08:22:13 -07:00
// nodelinter-ignore-next-line
2021-07-15 10:30:59 -07:00
description : 'A username associated with the user (e.g. user_name.123)' ,
} ,
{
displayName : 'Zip Code' ,
name : 'zip' ,
type : 'string' ,
default : '' ,
description : 'Zip code for the user' ,
} ,
] ,
} ,
/* -------------------------------------------------------------------------- */
/* user:getAll */
/* -------------------------------------------------------------------------- */
{
displayName : 'Return All' ,
name : 'returnAll' ,
type : 'boolean' ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
operation : [ 'getAll' ] ,
resource : [ 'user' ] ,
2021-07-15 10:30:59 -07:00
} ,
} ,
default : false ,
2022-04-02 08:22:13 -07:00
description : 'Whether to return all results or only up to a given limit' ,
2021-07-15 10:30:59 -07:00
} ,
{
displayName : 'Limit' ,
name : 'limit' ,
type : 'number' ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
operation : [ 'getAll' ] ,
resource : [ 'user' ] ,
returnAll : [ false ] ,
2021-07-15 10:30:59 -07:00
} ,
} ,
typeOptions : {
minValue : 1 ,
maxValue : 500 ,
} ,
default : 50 ,
2022-05-06 14:01:25 -07:00
description : 'Max number of results to return' ,
2021-07-15 10:30:59 -07:00
} ,
{
displayName : 'Options' ,
name : 'options' ,
type : 'collection' ,
placeholder : 'Add Field' ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'user' ] ,
operation : [ 'getAll' ] ,
2021-07-15 10:30:59 -07:00
} ,
} ,
default : { } ,
options : [
{
displayName : 'Exclude Reference Link' ,
name : 'sysparm_exclude_reference_link' ,
type : 'boolean' ,
default : false ,
description : 'Whether to exclude Table API links for reference fields' ,
} ,
{
2022-06-20 07:54:01 -07:00
displayName : 'Field Names or IDs' ,
2021-07-15 10:30:59 -07:00
name : 'sysparm_fields' ,
type : 'multiOptions' ,
typeOptions : {
loadOptionsMethod : 'getColumns' ,
2022-08-17 08:50:24 -07:00
loadOptionsDependsOn : [ 'operation' ] ,
2021-07-15 10:30:59 -07:00
} ,
2022-04-02 08:22:13 -07:00
default : [ ] ,
2022-08-17 08:50:24 -07:00
description :
'A list of fields to return. Choose from the list, or specify IDs using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.' ,
2022-04-02 08:22:13 -07:00
hint : 'String of comma separated values or an array of strings can be set in an expression' ,
2021-07-15 10:30:59 -07:00
} ,
{
displayName : 'Filter' ,
name : 'sysparm_query' ,
type : 'string' ,
default : '' ,
2022-08-17 08:50:24 -07:00
description :
'An encoded query string used to filter the results. <a href="https://developer.servicenow.com/dev.do#!/learn/learning-plans/quebec/servicenow_application_developer/app_store_learnv2_rest_quebec_more_about_query_parameters">More info</a>.' ,
2021-07-15 10:30:59 -07:00
} ,
{
displayName : 'Return Values' ,
name : 'sysparm_display_value' ,
type : 'options' ,
options : [
{
name : 'Actual Values' ,
value : 'false' ,
} ,
{
name : 'Both' ,
value : 'all' ,
} ,
{
name : 'Display Values' ,
value : 'true' ,
} ,
] ,
default : 'false' ,
description : 'Choose which values to return' ,
} ,
] ,
} ,
/* -------------------------------------------------------------------------- */
/* user:get/delete */
/* -------------------------------------------------------------------------- */
{
displayName : 'Retrieve Identifier' ,
name : 'getOption' ,
type : 'options' ,
default : 'id' ,
options : [
{
name : 'ID' ,
value : 'id' ,
} ,
{
name : 'Username' ,
value : 'user_name' ,
} ,
] ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'user' ] ,
operation : [ 'get' ] ,
2021-07-15 10:30:59 -07:00
} ,
} ,
required : true ,
description : 'Unique identifier of the user' ,
} ,
{
displayName : 'Username' ,
name : 'user_name' ,
type : 'string' ,
default : '' ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'user' ] ,
operation : [ 'get' ] ,
getOption : [ 'user_name' ] ,
2021-07-15 10:30:59 -07:00
} ,
} ,
required : true ,
description : 'Unique identifier of the user' ,
} ,
{
displayName : 'User ID' ,
name : 'id' ,
type : 'string' ,
default : '' ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'user' ] ,
operation : [ 'get' ] ,
getOption : [ 'id' ] ,
2021-07-15 10:30:59 -07:00
} ,
} ,
required : true ,
description : 'Unique identifier of the user' ,
} ,
{
displayName : 'User ID' ,
name : 'id' ,
type : 'string' ,
default : '' ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'user' ] ,
operation : [ 'delete' ] ,
2021-07-15 10:30:59 -07:00
} ,
} ,
required : true ,
description : 'Unique identifier of the user' ,
} ,
{
displayName : 'Options' ,
name : 'options' ,
type : 'collection' ,
placeholder : 'Add Field' ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'user' ] ,
operation : [ 'get' ] ,
2021-07-15 10:30:59 -07:00
} ,
} ,
default : { } ,
options : [
{
displayName : 'Exclude Reference Link' ,
name : 'sysparm_exclude_reference_link' ,
type : 'boolean' ,
default : false ,
description : 'Whether to exclude Table API links for reference fields' ,
} ,
{
2022-06-20 07:54:01 -07:00
displayName : 'Field Names or IDs' ,
2021-07-15 10:30:59 -07:00
name : 'sysparm_fields' ,
type : 'multiOptions' ,
typeOptions : {
loadOptionsMethod : 'getColumns' ,
2022-08-17 08:50:24 -07:00
loadOptionsDependsOn : [ 'operation' ] ,
2021-07-15 10:30:59 -07:00
} ,
2022-04-02 08:22:13 -07:00
default : [ ] ,
2022-08-17 08:50:24 -07:00
description :
'A list of fields to return. Choose from the list, or specify IDs using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.' ,
2022-04-02 08:22:13 -07:00
hint : 'String of comma separated values or an array of strings can be set in an expression' ,
2021-07-15 10:30:59 -07:00
} ,
{
displayName : 'Return Values' ,
name : 'sysparm_display_value' ,
type : 'options' ,
options : [
{
name : 'Actual Values' ,
value : 'false' ,
} ,
{
name : 'Both' ,
value : 'all' ,
} ,
{
name : 'Display Values' ,
value : 'true' ,
} ,
] ,
default : 'false' ,
description : 'Choose which values to return' ,
} ,
] ,
} ,
/* -------------------------------------------------------------------------- */
/* user:update */
/* -------------------------------------------------------------------------- */
{
displayName : 'User ID' ,
name : 'id' ,
type : 'string' ,
default : '' ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'user' ] ,
operation : [ 'update' ] ,
2021-07-15 10:30:59 -07:00
} ,
} ,
required : true ,
description : 'Unique identifier of the user' ,
} ,
{
displayName : 'Update Fields' ,
name : 'updateFields' ,
type : 'collection' ,
placeholder : 'Add Field' ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'user' ] ,
operation : [ 'update' ] ,
2021-07-15 10:30:59 -07:00
} ,
} ,
default : { } ,
options : [
{
displayName : 'Active' ,
name : 'active' ,
type : 'boolean' ,
2022-04-02 08:22:13 -07:00
default : false ,
2021-07-15 10:30:59 -07:00
description : 'Whether to activate the user' ,
} ,
{
displayName : 'Building' ,
name : 'building' ,
type : 'string' ,
default : '' ,
description : 'The Building address' ,
} ,
{
displayName : 'City' ,
name : 'city' ,
type : 'string' ,
default : '' ,
description : 'City of the user' ,
} ,
{
displayName : 'Company' ,
name : 'company' ,
type : 'string' ,
default : '' ,
description : 'The name of the company for the user' ,
} ,
{
displayName : 'Country' ,
name : 'country' ,
type : 'string' ,
default : '' ,
description : 'Country of the user' ,
} ,
{
displayName : 'Department' ,
name : 'department' ,
type : 'string' ,
default : '' ,
description : 'Department of the user' ,
} ,
{
displayName : 'Email' ,
name : 'email' ,
type : 'string' ,
2022-06-20 07:54:01 -07:00
placeholder : 'name@email.com' ,
2021-07-15 10:30:59 -07:00
default : '' ,
description : 'The email address associated with the user' ,
} ,
{
displayName : 'First Name' ,
name : 'first_name' ,
type : 'string' ,
default : '' ,
description : 'The first name of the user' ,
} ,
{
displayName : 'Gender' ,
name : 'gender' ,
type : 'string' ,
default : '' ,
description : 'The gender of the user' ,
} ,
{
displayName : 'Home Phone' ,
name : 'home_phone' ,
type : 'string' ,
default : '' ,
description : 'Home phone of the user' ,
} ,
{
displayName : 'Last Name' ,
name : 'last_name' ,
type : 'string' ,
default : '' ,
description : 'The last name of the user' ,
} ,
{
displayName : 'Location' ,
name : 'location' ,
type : 'string' ,
default : '' ,
description : 'Location of the user' ,
} ,
{
displayName : 'Manager' ,
name : 'manager' ,
type : 'string' ,
default : '' ,
description : 'Manager of the user' ,
} ,
{
displayName : 'Middle Name' ,
name : 'middle_name' ,
type : 'string' ,
default : '' ,
description : 'The middle name of the user' ,
} ,
{
displayName : 'Mobile Phone' ,
name : 'mobile_phone' ,
type : 'string' ,
default : '' ,
description : 'Mobile phone number of the user' ,
} ,
{
displayName : 'Password' ,
name : 'user_password' ,
type : 'string' ,
default : '' ,
2022-08-17 08:50:24 -07:00
description : "The user's password" ,
2021-07-15 10:30:59 -07:00
} ,
{
displayName : 'Password Needs Reset' ,
name : 'password_needs_reset' ,
type : 'boolean' ,
2022-04-02 08:22:13 -07:00
default : false ,
2021-07-15 10:30:59 -07:00
description : 'Whether to require a password reset when the user logs in' ,
} ,
{
displayName : 'Phone' ,
name : 'phone' ,
type : 'string' ,
default : '' ,
description : 'The main phone number of the user' ,
} ,
{
2022-06-20 07:54:01 -07:00
displayName : 'Role Names or IDs' ,
2021-07-15 10:30:59 -07:00
name : 'roles' ,
type : 'multiOptions' ,
typeOptions : {
loadOptionsMethod : 'getUserRoles' ,
} ,
2022-04-02 08:22:13 -07:00
default : [ ] ,
2022-08-17 08:50:24 -07:00
description :
'Roles of the user. Choose from the list, or specify IDs using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.' ,
2021-07-15 10:30:59 -07:00
} ,
{
displayName : 'Source' ,
name : 'source' ,
type : 'string' ,
default : '' ,
} ,
{
displayName : 'State' ,
name : 'state' ,
type : 'string' ,
default : '' ,
description : 'State for the user' ,
} ,
{
displayName : 'Street' ,
name : 'street' ,
type : 'string' ,
default : '' ,
description : 'Street information for the user separated by comma' ,
} ,
{
displayName : 'Username' ,
name : 'user_name' ,
type : 'string' ,
default : '' ,
2022-04-02 08:22:13 -07:00
// nodelinter-ignore-next-line
2021-07-15 10:30:59 -07:00
description : 'A username associated with the user (e.g. user_name.123)' ,
} ,
{
displayName : 'Zip Code' ,
name : 'zip' ,
type : 'string' ,
default : '' ,
description : 'Zip code for the user' ,
} ,
] ,
} ,
2021-12-03 00:44:16 -08:00
] ;