Copy a User

post/accountmanager.copyuser/{userid}

Creates a copy of a selected user (including role and user group assignments). First name, last name, email and password are NOT copied (as they typically are different anyway).

Securitybasic or X-PriceFx-jwt
Request
path Parameters
userid
required
string

The ID of the user you want to copy. The userId is the typedId without the U suffix. For example, userId of the 2147490806.U is 2147490806.

Responses
200

OK

Response Schema: application/json
object
node
string non-empty
csrfToken
string non-empty
Array of objects non-empty unique
Array (non-empty)
version
number
typedId
string non-empty
loginName
string non-empty
firstName
any
lastName
any
email
any
Array of objects non-empty unique
Array of objects non-empty unique
activated
boolean
workflowEmailingActivated
boolean
noSession
boolean
requireTFA
boolean
receiveAdminEmail
boolean
ssoOnly
boolean
wizardDashboardName
any
firstLogin
boolean
additionalInfo1
any
additionalInfo2
any
additionalInfo3
any
additionalInfo4
any
emailLocale
any
defaultUserGroupEdit
any
defaultUserGroupViewDetails
any
productFilterCriteria
any
customerFilterCriteria
any
allRoleNames
Array of objects
Array of objects non-empty unique
roleNames
Array of objects
createDate
string non-empty
createdBy
number
lastLogin
any
lastUpdateBy
number
extendedData
any
passwordExpiry
any
status
number
Request samples
Response samples
application/json
{
  • "response": {
    • "node": "string",
    • "csrfToken": "string",
    • "data": [
      • {
        • "version": 0,
        • "typedId": "string",
        • "loginName": "string",
        • "firstName": null,
        • "lastName": null,
        • "email": null,
        • "groups": [
          ],
        • "businessRoles": [
          ],
        • "activated": true,
        • "workflowEmailingActivated": true,
        • "noSession": true,
        • "requireTFA": true,
        • "receiveAdminEmail": true,
        • "ssoOnly": true,
        • "wizardDashboardName": null,
        • "firstLogin": true,
        • "additionalInfo1": null,
        • "additionalInfo2": null,
        • "additionalInfo3": null,
        • "additionalInfo4": null,
        • "emailLocale": null,
        • "defaultUserGroupEdit": null,
        • "defaultUserGroupViewDetails": null,
        • "productFilterCriteria": null,
        • "customerFilterCriteria": null,
        • "allRoleNames": [
          ],
        • "allGroups": [
          ],
        • "roleNames": [
          ],
        • "createDate": "string",
        • "createdBy": 0,
        • "lastLogin": null,
        • "lastUpdateBy": 0,
        • "extendedData": null,
        • "passwordExpiry": null
        }
      ],
    • "status": 0
    }
}