{"id":22241,"date":"2024-02-15T14:48:40","date_gmt":"2024-02-15T22:48:40","guid":{"rendered":"https:\/\/docs.extraview.com\/v22\/book\/create-user\/"},"modified":"2024-02-15T16:32:14","modified_gmt":"2024-02-16T00:32:14","slug":"create-user","status":"publish","type":"page","link":"https:\/\/docs.extraview.com\/v22\/create-user\/","title":{"rendered":"CREATE USER"},"content":{"rendered":"<p><code>{CREATE USER: security user id = <em>value1<\/em>, security password = <em>value2<\/em>, first name = <em>value3<\/em>,<br \/>\n\t&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; last name = <em>value4<\/em>, email = <em>value5<\/em>, company name = <em>value6<br \/>\n\t&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<\/em>[, company name = <em>value7<\/em>] [, work phone = <em>value8<\/em>]<br \/>\n\t&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;[, city = <em>value9<\/em>] [, state = <em>value10<\/em>] [, allow email dups = true | false]<br \/>\n\t&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp; [, allow first last dups = true | false] [,<em> other_fields<\/em> = <em>valuenn<\/em>]<em> <\/em>}<\/code><\/p>\n<ul>\n<li>\n\t\tA full list of the fields that may be used as parameters in the command is in the section at the end of this page titled <strong>Full Field List<\/strong><\/li>\n<li>\n\t\tField values from the current issue being inserted or updated can be substituted for any of the <em>valuen <\/em>entries.&nbsp; For example, <code>first name = VENDOR_FIRST_NAME<\/code><\/li>\n<li>\n\t\tYou can assign a field value from a linked record to the field on the account record.&nbsp; For example, <code>company name = (parentRecordLink).VENDOR_NAME<\/code> will assign the company name of the user being created to the vendor name in the link to the parent record named <code>parentRecordLink<\/code><\/li>\n<li>\n\t\tYou may assign a string value to a field.&nbsp; For example, <code>area = 'Customer Account'<\/code> sets the value for the user&#8217;s area.&nbsp; Of course, the value for the field must exist<\/li>\n<li>\n\t\tBoth the roles and privacy_group parameters may be multi-valued.&nbsp; In that case the values are separated by semi-colons.&nbsp; For example <code>user role = ENGINEERING; MARKETING; ACCOUNTING<\/code> will assign these 3 rules to the user being created<\/li>\n<li>\n\t\tIt is recommended that this feature be used to create users in a guest role capacity, or more explicitly, to be in the role nominated in the behavior setting named <code>LIMITED_USER_ROLE<\/code><\/li>\n<li>\n\t\tA further recommendation is that you use this command to create users who occupy concurrent licenses as opposed to named licenses.&nbsp; This avoids the potential to attempt to create a named user license when no more are avaiable. If there is an attempt to create a new user account and no licenses are available, the account is created, but is disabled<\/li>\n<li>\n\t\tAn error is generated if the user attempts to create a duplicate or invalid <code>security user id<\/code><\/li>\n<li>\n\t\t<code>allow email dups<\/code> &#8211; When this is set to a value of <code>true<\/code>, then duplicate email addresses will be allowed across different users.&nbsp; The default is <code>false<\/code>.&nbsp; Care should be taken when assigning this to a value of <code>true<\/code>, as it will not be possible to determine which user is creating an issue via EVMail, as this is dependent upon the software finding a unique email address within the ExtraView application.&nbsp; The default value is <code>false<\/code><\/li>\n<li>\n\t\t<code>allow first last dups<\/code> &#8211; When this is set to a value of true, then duplicate combinations of first and last names are allowed with different users. &nbsp; The default value is <code>false<\/code><\/li>\n<li>\n\t\tThis action is often used as a companion to the <code>&lt;== user mapping ==&gt;<\/code> directive which allows administrative changes to users to be reflected in updates to issues which were originally used to create user information.<\/li>\n<\/ul>\n<h3>\n\tNote<\/h3>\n<p>It is recommended that you use a built-in JavaScript function to verify the password before the rule is invoked.&nbsp; To achieve this, configure the following:<\/p>\n<ul>\n<li>\n\t\tA text field to store the password.&nbsp;&nbsp; This field is passed to the server as part of the CREATE USER rule in the security_password parameter<\/li>\n<li>\n\t\tA text field to store the verify password field.&nbsp; This field is <strong>not<\/strong> passed to the server, but you should place a layout cell attribute of the type HTML MODIFIER on the field.&nbsp; The syntax of the value is:<\/p>\n<p>\t\t<code>onchange=checkPasswordRules(p_passwordfield.value, p_verifypassword.value, <code>minCharacters, minNumeric, minUpperCase, minSpecialChars)<\/code><\/code><\/p>\n<p>\t\t<code>passwordfield <\/code> &#8211; the name of the password field on the form<br \/>\n\t\t<code>verifypassword <\/code> &#8211; the name of the verify password field on the form<br \/>\n\t\t<code>minCharacters <\/code> &#8211; the minimum number of characters in the password<br \/>\n\t\t<code>minNumeric <\/code> &#8211; the minimum number of numeric characters in the password<br \/>\n\t\t<code>minUpperCase <\/code> &#8211; the minimum number of upper case characters in the password<br \/>\n\t\t<code>minSpecialChars <\/code> &#8211; the minimum number of special characters in the password<\/p>\n<p>\t\tThe 4 digits should be identical to those in the behavior setting named PASSWORD_RULES<\/li>\n<li>\n\t\tAn example might be <code>onchange=checkPasswordRules(p_password.value, p_verifypass.value, 8<code>, 1, 1, 1<\/code>)<\/code><\/li>\n<\/ul>\n<h3>\n\tExample<\/h3>\n<p><code><code>if (PROJECT= 'Contacts' &amp;&amp; CREATE_USER_BTN.{changed} &amp;&amp; NEW_USER_ID.{not null}) {<br \/>\n\t&nbsp; CREATE USER:<br \/>\n\t&nbsp;&nbsp;&nbsp; security user id&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; = NEW_USER_ID,<br \/>\n\t<code>&nbsp;&nbsp;&nbsp; security password&nbsp;&nbsp;&nbsp;&nbsp; = 'Welcome',<\/code><br \/>\n\t&nbsp;&nbsp;&nbsp; first name&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; = VENDOR_FNAME,<br \/>\n\t&nbsp;&nbsp;&nbsp; last name&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; = VENDOR_LNAME,<br \/>\n\t&nbsp;&nbsp;&nbsp; email&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; = VENDOR_EMAIL,<br \/>\n\t&nbsp;&nbsp;&nbsp; company name&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; = (parentRecord).VENDOR_LIST,<br \/>\n\t&nbsp;&nbsp;&nbsp; work phone&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; = VENDOR_PHONE,<br \/>\n\t&nbsp;&nbsp;&nbsp; city&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; = CITY,<br \/>\n\t&nbsp;&nbsp;&nbsp; state&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; = STATE,<br \/>\n\t&nbsp;&nbsp;&nbsp; postal code&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; = ZIP,<br \/>\n\t&nbsp;&nbsp;&nbsp; area&nbsp;&nbsp; &nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; = 'Questionnaire Area',<br \/>\n\t&nbsp;&nbsp;&nbsp; project&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; = 'Questionnaire Data',<br \/>\n\t&nbsp;&nbsp;&nbsp; alpha timezone&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; = PST8PDT,<br \/>\n\t&nbsp;&nbsp;&nbsp; user_role&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; = ENGINEERING; SALES,<br \/>\n\t&nbsp;&nbsp;&nbsp; privacy group&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; = PRIVACY_GROUP_LIST,<br \/>\n\t&nbsp;&nbsp;&nbsp; enabled user&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; = N,<br \/>\n\t<code>&nbsp;&nbsp;&nbsp; allow email dups&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; = true,<br \/>\n\t&nbsp;&nbsp;&nbsp; allow first last_dups = false<\/code><br \/>\n\t}<br \/>\n\t## Not strictly part of the CREATE USER rule, but we might now want to assign<br \/>\n\t## the user just created to another field on the form - in this case the list<br \/>\n\t## field named CONTACT<br \/>\n\tif (PROJECT='Contacts' &amp;&amp; CONTACT.{is null} &amp;&amp; NEW_USER_ID.{is not null}) {<br \/>\n\t&nbsp;&nbsp;&nbsp; CONTACT = NEW_USER_ID;<br \/>\n\t}<\/code><\/code><\/p>\n<h4>\n\tFull Parameter Field List<\/h4>\n<p><style type=\"text\/css\">\ntd {\n    border-bottom:1px solid #eee;\n  }\t<\/style>\n<\/p>\n<table border=\"0\" cellpadding=\"2\" cellspacing=\"2\" style=\"border:1px solid #ddd;border-collapse:collapse\">\n<tbody>\n<tr bgcolor=\"#fafafa\">\n<td>\n\t\t\t\t<b>Field<\/b><\/td>\n<td>\n\t\t\t\t<strong>Required?<\/strong><\/td>\n<td>\n\t\t\t\t<b>Notes<\/b><\/td>\n<\/tr>\n<tr>\n<td>\n\t\t\t\t<code>additional email<\/code><\/td>\n<td>\n\t\t\t\t&nbsp;<\/td>\n<td>\n\t\t\t\tMust be a valid email address.&nbsp; This is optional and only used as an altermative to the <code>EMAIL<\/code> setting<\/td>\n<\/tr>\n<tr>\n<td>\n\t\t\t\t<code>additional email on<\/code><\/td>\n<td>\n\t\t\t\t&nbsp;<\/td>\n<td>\n\t\t\t\tY or N to turn additional email address on \/ off<\/td>\n<\/tr>\n<tr>\n<td>\n\t\t\t\t<code>address<\/code> or<br \/>\n\t\t\t\t<code>address 1<\/code><\/td>\n<td>\n\t\t\t\t&nbsp;<\/td>\n<td>\n\t\t\t\t&nbsp;<\/td>\n<\/tr>\n<tr>\n<td>\n\t\t\t\t<code>address 2<\/code><\/td>\n<td>\n\t\t\t\t&nbsp;<\/td>\n<td>\n\t\t\t\t&nbsp;<\/td>\n<\/tr>\n<tr>\n<td>\n\t\t\t\t<code>alpha timezone<\/code><\/td>\n<td>\n\t\t\t\t&nbsp;<\/td>\n<td>\n\t\t\t\tThis defaults to the value in the behavior setting named DEFAULT_TIMEZONE<\/td>\n<\/tr>\n<tr>\n<td>\n\t\t\t\t<font color=\"#aa0000\" face=\"courier, monospace\">area<\/font><\/td>\n<td>\n\t\t\t\t&nbsp;<\/td>\n<td>\n\t\t\t\tThe ID of the default Business Area of the user<\/td>\n<\/tr>\n<tr>\n<td>\n\t\t\t\t<code>cell phone<\/code><\/td>\n<td>\n\t\t\t\t&nbsp;<\/td>\n<td>\n\t\t\t\t&nbsp;<\/td>\n<\/tr>\n<tr>\n<td>\n\t\t\t\t<font color=\"#aa0000\" face=\"courier, monospace\">chart font<\/font><\/td>\n<td>\n\t\t\t\t&nbsp;<\/td>\n<td>\n\t\t\t\tMust be a valid font name on your server.&nbsp; This defaults to the value in the behavior setting named CHART_FONT<\/td>\n<\/tr>\n<tr>\n<td>\n\t\t\t\t<font color=\"#aa0000\" face=\"courier, monospace\">city<\/font><\/td>\n<td>\n\t\t\t\t&nbsp;<\/td>\n<td>\n\t\t\t\t&nbsp;<\/td>\n<\/tr>\n<tr>\n<td>\n\t\t\t\t<code>company name<\/code><\/td>\n<td>\n\t\t\t\t&nbsp;<\/td>\n<td>\n\t\t\t\t&nbsp;<\/td>\n<\/tr>\n<tr>\n<td>\n\t\t\t\t<font color=\"#aa0000\" face=\"courier, monospace\">country<\/font><\/td>\n<td>\n\t\t\t\t&nbsp;<\/td>\n<td>\n\t\t\t\t&nbsp;<\/td>\n<\/tr>\n<tr>\n<td>\n\t\t\t\t<font color=\"#aa0000\" face=\"courier, monospace\">date format<\/font><\/td>\n<td>\n\t\t\t\t&nbsp;<\/td>\n<td>\n\t\t\t\tMust be a valid date format. See the Appendix named <a href=\"\/date-and-time-formats\/\">Date and Time Formats<\/a> for a list. The default is taken from your behavior setting named DEFAULT_DATE_FORMAT<\/td>\n<\/tr>\n<tr>\n<td>\n\t\t\t\t<code>start page id<\/code><\/td>\n<td>\n\t\t\t\t&nbsp;<\/td>\n<td>\n\t\t\t\tThis defaults to the value in the behavior setting named DEFAULT_START_PAGE<\/td>\n<\/tr>\n<tr>\n<td>\n\t\t\t\t<code>email<\/code><\/td>\n<td>\n\t\t\t\tYes<\/td>\n<td>\n\t\t\t\tMust be a valid email address<\/td>\n<\/tr>\n<tr>\n<td>\n\t\t\t\t<code>email charset<\/code><\/td>\n<td>\n\t\t\t\t&nbsp;<\/td>\n<td>\n\t\t\t\t&nbsp;<\/td>\n<\/tr>\n<tr>\n<td>\n\t\t\t\t<code>email format<\/code><\/td>\n<td>\n\t\t\t\t&nbsp;<\/td>\n<td>\n\t\t\t\tThe default is HTML.&nbsp; The alternative is TEXT<\/td>\n<\/tr>\n<tr>\n<td>\n\t\t\t\t<code>email on<\/code><\/td>\n<td>\n\t\t\t\t&nbsp;<\/td>\n<td>\n\t\t\t\tY or N.&nbsp; This enables or disables email on the account<\/td>\n<\/tr>\n<tr>\n<td>\n\t\t\t\t<code>enabled user<\/code><\/td>\n<td>\n\t\t\t\tYes<\/td>\n<td>\n\t\t\t\tUse Y to enable the user with a Concurrent license.<br \/>\n\t\t\t\tUse N to enable the user with a Named license.<br \/>\n\t\t\t\tUse D to disable the user.<br \/>\n\t\t\t\tThe default value is Y, which enables the user with a Concurrent license.<\/td>\n<\/tr>\n<tr>\n<td>\n\t\t\t\t<code>fax<\/code><\/td>\n<td>\n\t\t\t\t&nbsp;<\/td>\n<td>\n\t\t\t\t&nbsp;<\/td>\n<\/tr>\n<tr>\n<td>\n\t\t\t\t<code>file attach charset<\/code><\/td>\n<td>\n\t\t\t\t&nbsp;<\/td>\n<td>\n\t\t\t\tTypically UTF-8, which is the default<\/td>\n<\/tr>\n<tr>\n<td>\n\t\t\t\t<code>first name<\/code><\/td>\n<td>\n\t\t\t\t&nbsp;<\/td>\n<td>\n\t\t\t\t&nbsp;<\/td>\n<\/tr>\n<tr>\n<td>\n\t\t\t\t<code>home phone<\/code><\/td>\n<td>\n\t\t\t\t&nbsp;<\/td>\n<td>\n\t\t\t\t&nbsp;<\/td>\n<\/tr>\n<tr>\n<td>\n\t\t\t\t<code>job title<\/code><\/td>\n<td>\n\t\t\t\t&nbsp;<\/td>\n<td>\n\t\t\t\t&nbsp;<\/td>\n<\/tr>\n<tr>\n<td>\n\t\t\t\t<code>language<\/code><\/td>\n<td>\n\t\t\t\t&nbsp;<\/td>\n<td>\n\t\t\t\tUse the two character ISO 3166 code. The default is taken from your behavior setting named DEFAULT_LANGUAGE<\/td>\n<\/tr>\n<tr>\n<td>\n\t\t\t\t<code>last name<\/code><\/td>\n<td>\n\t\t\t\tYes<\/td>\n<td>\n\t\t\t\t&nbsp;<\/td>\n<\/tr>\n<tr>\n<td>\n\t\t\t\t<code>login id<\/code><\/td>\n<td>\n\t\t\t\t&nbsp;<\/td>\n<td>\n\t\t\t\tThe alternative to SECURITY_USER_ID<\/td>\n<\/tr>\n<tr>\n<td>\n\t\t\t\t<code>mobile report id<\/code><\/td>\n<td>\n\t\t\t\t&nbsp;<\/td>\n<td>\n\t\t\t\tMust be the Report ID of a valid report<\/td>\n<\/tr>\n<tr>\n<td>\n\t\t\t\t<code><nobr>password expiry date<\/nobr><\/code><\/td>\n<td>\n\t\t\t\t&nbsp;<\/td>\n<td>\n\t\t\t\t&nbsp;<\/td>\n<\/tr>\n<tr>\n<td>\n\t\t\t\t<code>password interval<\/code><\/td>\n<td>\n\t\t\t\t&nbsp;<\/td>\n<td>\n\t\t\t\tThe number of days between each prompt for a user to update their password.&nbsp; The default is 0<\/td>\n<\/tr>\n<tr>\n<td>\n\t\t\t\t<code>privacy group<\/code><\/td>\n<td>\n\t\t\t\t&nbsp;<\/td>\n<td>\n\t\t\t\tThe name of a valid privacy group<\/td>\n<\/tr>\n<tr>\n<td>\n\t\t\t\t<code>postal code<\/code> or<br \/>\n\t\t\t\t<code>zip<\/code><\/td>\n<td>\n\t\t\t\t&nbsp;<\/td>\n<td>\n\t\t\t\t&nbsp;<\/td>\n<\/tr>\n<tr>\n<td>\n\t\t\t\t<code>project<\/code><\/td>\n<td>\n\t\t\t\t&nbsp;<\/td>\n<td>\n\t\t\t\tThe ID of a valid project within the Business Area being set for the user<\/td>\n<\/tr>\n<tr>\n<td>\n\t\t\t\t<code>region<\/code><\/td>\n<td>\n\t\t\t\t&nbsp;<\/td>\n<td>\n\t\t\t\tThis defaults to the value in the behavior setting named DEFAULT_REGION<\/td>\n<\/tr>\n<tr>\n<td>\n\t\t\t\t<code>report 1 id<\/code><\/td>\n<td>\n\t\t\t\t&nbsp;<\/td>\n<td>\n\t\t\t\tA valid Report ID for the first report on a user&#8217;s Home Page<\/td>\n<\/tr>\n<tr>\n<td>\n\t\t\t\t<code>report 2 id<\/code><\/td>\n<td>\n\t\t\t\t&nbsp;<\/td>\n<td>\n\t\t\t\tA valid Report ID for the second report on a user&#8217;s Home Page<\/td>\n<\/tr>\n<tr>\n<td>\n\t\t\t\t<code>report 3 id<\/code><\/td>\n<td>\n\t\t\t\t&nbsp;<\/td>\n<td>\n\t\t\t\tA valid Report ID for the third report on a user&#8217;s Home Page<\/td>\n<\/tr>\n<tr>\n<td>\n\t\t\t\t<code>security password<\/code><\/td>\n<td>\n\t\t\t\tYes<\/td>\n<td>\n\t\t\t\tThe unencrypted value for a user&#8217;s password<\/td>\n<\/tr>\n<tr>\n<td>\n\t\t\t\t<code>security user id<\/code><\/td>\n<td>\n\t\t\t\tYes<\/td>\n<td>\n\t\t\t\tThe User&#8217;s ID<\/td>\n<\/tr>\n<tr>\n<td>\n\t\t\t\t<code>state<\/code> or<br \/>\n\t\t\t\t<code>province<\/code><\/td>\n<td>\n\t\t\t\t&nbsp;<\/td>\n<td>\n\t\t\t\t&nbsp;<\/td>\n<\/tr>\n<tr>\n<td>\n\t\t\t\t<code>twenty four hour time<\/code><\/td>\n<td>\n\t\t\t\t&nbsp;<\/td>\n<td>\n\t\t\t\tUse Y if the user is to use 24-hour time, else use N.&nbsp; The default is N<\/td>\n<\/tr>\n<tr>\n<td>\n\t\t\t\t<code>user defined 1<\/code><\/td>\n<td>\n\t\t\t\t&nbsp;<\/td>\n<td>\n\t\t\t\t&nbsp;<\/td>\n<\/tr>\n<tr>\n<td>\n\t\t\t\t<code>user defined 2<\/code><\/td>\n<td>\n\t\t\t\t&nbsp;<\/td>\n<td>\n\t\t\t\t&nbsp;<\/td>\n<\/tr>\n<tr>\n<td>\n\t\t\t\t<code>user defined 3<\/code><\/td>\n<td>\n\t\t\t\t&nbsp;<\/td>\n<td>\n\t\t\t\t&nbsp;<\/td>\n<\/tr>\n<tr>\n<td>\n\t\t\t\t<code>user defined 4<\/code><\/td>\n<td>\n\t\t\t\t<code>&nbsp;<\/code><\/td>\n<td>\n\t\t\t\t<code>&nbsp;<\/code><\/td>\n<\/tr>\n<tr>\n<td>\n\t\t\t\t<code>user defined 5<\/code><\/td>\n<td>\n\t\t\t\t<code>&nbsp;<\/code><\/td>\n<td>\n\t\t\t\t<code>&nbsp;<\/code><\/td>\n<\/tr>\n<tr>\n<td>\n\t\t\t\t<code>user defined 6<\/code><\/td>\n<td>\n\t\t\t\t<code>&nbsp;<\/code><\/td>\n<td>\n\t\t\t\t<code>&nbsp;<\/code><\/td>\n<\/tr>\n<tr>\n<td>\n\t\t\t\t<code>user defined 7<\/code><\/td>\n<td>\n\t\t\t\t<code>&nbsp;<\/code><\/td>\n<td>\n\t\t\t\t<code>&nbsp;<\/code><\/td>\n<\/tr>\n<tr>\n<td>\n\t\t\t\t<code>user defined 8<\/code><\/td>\n<td>\n\t\t\t\t<code>&nbsp;<\/code><\/td>\n<td>\n\t\t\t\t<code>&nbsp;<\/code><\/td>\n<\/tr>\n<tr>\n<td>\n\t\t\t\t<code>user defined 9<\/code><\/td>\n<td>\n\t\t\t\t<code>&nbsp;<\/code><\/td>\n<td>\n\t\t\t\t<code>&nbsp;<\/code><\/td>\n<\/tr>\n<tr>\n<td>\n\t\t\t\t<code>user defined 10<\/code><\/td>\n<td>\n\t\t\t\t<code>&nbsp;<\/code><\/td>\n<td>\n\t\t\t\t<code>&nbsp;<\/code><\/td>\n<\/tr>\n<tr>\n<td>\n\t\t\t\t<code>user role<\/code><\/td>\n<td>\n\t\t\t\tYes<\/td>\n<td>\n\t\t\t\tA list of the names of user roles, delimited with semi-colons.&nbsp; The default is taken from the behavior setting named LIMITED_USER_ROLE<\/td>\n<\/tr>\n<tr>\n<td>\n\t\t\t\t<code>work phone<\/code><\/td>\n<td>\n\t\t\t\t<code>&nbsp;<\/code><\/td>\n<td>\n\t\t\t\t<code>&nbsp;<\/code><\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p>&nbsp;<\/p>\n","protected":false},"excerpt":{"rendered":"<p>{CREATE USER: security user id = value1, security password = value2, first name = value3, &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; last name = value4, email = value5, company name = value6 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;[, company name = value7] [, work phone = value8] &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;[, city = value9]&#8230;<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_acf_changed":false,"_lmt_disableupdate":"","_lmt_disable":"","_kad_blocks_custom_css":"","_kad_blocks_head_custom_js":"","_kad_blocks_body_custom_js":"","_kad_blocks_footer_custom_js":"","_kad_post_transparent":"","_kad_post_title":"","_kad_post_layout":"","_kad_post_sidebar_id":"","_kad_post_content_style":"","_kad_post_vertical_padding":"","_kad_post_feature":"","_kad_post_feature_position":"","_kad_post_header":false,"_kad_post_footer":false,"footnotes":""},"class_list":["post-22241","page","type-page","status-publish","hentry"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v25.1 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>CREATE USER - Product Documentation<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/docs.extraview.com\/v22\/create-user\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"CREATE USER - Product Documentation\" \/>\n<meta property=\"og:description\" content=\"{CREATE USER: security user id = value1, security password = value2, first name = value3, &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; last name = value4, email = value5, company name = value6 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;[, company name = value7] [, work phone = value8] &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;[, city = value9]...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/docs.extraview.com\/v22\/create-user\/\" \/>\n<meta property=\"og:site_name\" content=\"Product Documentation\" \/>\n<meta property=\"article:modified_time\" content=\"2024-02-16T00:32:14+00:00\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"8 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/docs.extraview.com\/v22\/create-user\/\",\"url\":\"https:\/\/docs.extraview.com\/v22\/create-user\/\",\"name\":\"CREATE USER - Product Documentation\",\"isPartOf\":{\"@id\":\"https:\/\/docs.extraview.com\/v22\/#website\"},\"datePublished\":\"2024-02-15T22:48:40+00:00\",\"dateModified\":\"2024-02-16T00:32:14+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/docs.extraview.com\/v22\/create-user\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/docs.extraview.com\/v22\/create-user\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/docs.extraview.com\/v22\/create-user\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/docs.extraview.com\/v22\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"CREATE USER\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/docs.extraview.com\/v22\/#website\",\"url\":\"https:\/\/docs.extraview.com\/v22\/\",\"name\":\"ExtraView Product Documentation\",\"description\":\"ExtraView Documentation\",\"publisher\":{\"@id\":\"https:\/\/docs.extraview.com\/v22\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/docs.extraview.com\/v22\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/docs.extraview.com\/v22\/#organization\",\"name\":\"ExtraView Corporation\",\"url\":\"https:\/\/docs.extraview.com\/v22\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/docs.extraview.com\/v22\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/docs-stg.extraview.com\/wp-content\/uploads\/2024\/03\/favicon.png\",\"contentUrl\":\"https:\/\/docs-stg.extraview.com\/wp-content\/uploads\/2024\/03\/favicon.png\",\"width\":512,\"height\":512,\"caption\":\"ExtraView Corporation\"},\"image\":{\"@id\":\"https:\/\/docs.extraview.com\/v22\/#\/schema\/logo\/image\/\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"CREATE USER - Product Documentation","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/docs.extraview.com\/v22\/create-user\/","og_locale":"en_US","og_type":"article","og_title":"CREATE USER - Product Documentation","og_description":"{CREATE USER: security user id = value1, security password = value2, first name = value3, &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; last name = value4, email = value5, company name = value6 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;[, company name = value7] [, work phone = value8] &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;[, city = value9]...","og_url":"https:\/\/docs.extraview.com\/v22\/create-user\/","og_site_name":"Product Documentation","article_modified_time":"2024-02-16T00:32:14+00:00","twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"8 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/docs.extraview.com\/v22\/create-user\/","url":"https:\/\/docs.extraview.com\/v22\/create-user\/","name":"CREATE USER - Product Documentation","isPartOf":{"@id":"https:\/\/docs.extraview.com\/v22\/#website"},"datePublished":"2024-02-15T22:48:40+00:00","dateModified":"2024-02-16T00:32:14+00:00","breadcrumb":{"@id":"https:\/\/docs.extraview.com\/v22\/create-user\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/docs.extraview.com\/v22\/create-user\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/docs.extraview.com\/v22\/create-user\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/docs.extraview.com\/v22\/"},{"@type":"ListItem","position":2,"name":"CREATE USER"}]},{"@type":"WebSite","@id":"https:\/\/docs.extraview.com\/v22\/#website","url":"https:\/\/docs.extraview.com\/v22\/","name":"ExtraView Product Documentation","description":"ExtraView Documentation","publisher":{"@id":"https:\/\/docs.extraview.com\/v22\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/docs.extraview.com\/v22\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/docs.extraview.com\/v22\/#organization","name":"ExtraView Corporation","url":"https:\/\/docs.extraview.com\/v22\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/docs.extraview.com\/v22\/#\/schema\/logo\/image\/","url":"https:\/\/docs-stg.extraview.com\/wp-content\/uploads\/2024\/03\/favicon.png","contentUrl":"https:\/\/docs-stg.extraview.com\/wp-content\/uploads\/2024\/03\/favicon.png","width":512,"height":512,"caption":"ExtraView Corporation"},"image":{"@id":"https:\/\/docs.extraview.com\/v22\/#\/schema\/logo\/image\/"}}]}},"taxonomy_info":[],"featured_image_src_large":false,"author_info":{"display_name":"carl.koppel","author_link":"https:\/\/docs.extraview.com\/v22\/author\/carl-koppel\/"},"comment_info":0,"_links":{"self":[{"href":"https:\/\/docs.extraview.com\/v22\/wp-json\/wp\/v2\/pages\/22241","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/docs.extraview.com\/v22\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/docs.extraview.com\/v22\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/docs.extraview.com\/v22\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/docs.extraview.com\/v22\/wp-json\/wp\/v2\/comments?post=22241"}],"version-history":[{"count":0,"href":"https:\/\/docs.extraview.com\/v22\/wp-json\/wp\/v2\/pages\/22241\/revisions"}],"wp:attachment":[{"href":"https:\/\/docs.extraview.com\/v22\/wp-json\/wp\/v2\/media?parent=22241"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}