VXUser Data Type

Properties
name data type constraints description
name string   Name
firstName string   First Name
lastName string   Last Name
emailAddress string   Email address
password string   Password
description string   Description
credStoreId number   Id of the credential store
groupIdList array of number   List of group ids
groupNameList array of string  
status number required
isVisible number  
userSource number required
userRoleList array of string   List of roles for this user
otherAttributes string   Additional store attributes.
syncSource string   Sync Source
Properties inherited from VXDataObject
id number   Id of the data
createDate object   Date when this data was created
updateDate object   Date when this data was updated
owner string   Owner
updatedBy string   Updated By

Example

{
  "name" : "...",
  "firstName" : "...",
  "lastName" : "...",
  "emailAddress" : "...",
  "password" : "...",
  "description" : "...",
  "credStoreId" : 12345,
  "groupIdList" : [ 12345, 12345 ],
  "groupNameList" : [ "...", "..." ],
  "status" : 12345,
  "isVisible" : 12345,
  "userSource" : 12345,
  "userRoleList" : [ "...", "..." ],
  "otherAttributes" : "...",
  "syncSource" : "...",
  "id" : 12345,
  "createDate" : { },
  "updateDate" : { },
  "owner" : "...",
  "updatedBy" : "..."
}