Overview
This structure represents all of the unique identifying fields associated with a user. Users represent people who need to log into Projector for any reason, whether it be the Management Portal or Projector Web. Each resource within Projector is also a user, but each user need not be a resourceincludes basic information about a user. The information represented in this structure is not comprehensive and only includes certain key attributes of a user deemed to be useful in a listing of users.
Format
Panel | ||
---|---|---|
| ||
|
...
Elements
Element | Data Type | Required? | Default | Description | Sample Data |
---|---|---|---|---|---|
UserDisplayName | String (90) | On Insert: Yes On Update: Yes (if UserReferenceSystemId and UserUid is not supplied)One of UserDisplayName, UiserReferenceSystemId or UserUid is required | The user display name is a unique identifier for a user. | Betty Smith | |
UserId | Int32 | On Insert: No On Update: No | The user Id is a unique identifier for a user. For internal use only. | ||
UserReferenceSystemId | String (20) | On Insert: No On Update: Yes (if UserDisplayName and UserUid is not supplied)See UserDisplayName | The user reference system Id / employee Id is a unique identifier for a user. | Partner - 01 | |
UserUid | Int64 | On Insert: No On Update: Yes (if UserDisplayName and UserReferenceSystemId is not supplied) | The user Uid is a See UserDisplayName | A unique and immutable identifier for a user. | 1152921504607011056 |
EmailAddress | String (100) | On Insert: Yes On Update: No | The user's email address is a unique identifier for a user. | betty@revcorp.bb | |
FirstName | String (20) | On Insert: Yes On Update: No | The user's first name. | Betty | |
LastName | String (20) | On Insert: Yes On Update: No | The user's last name. | Smith | |
MiddleName | String (20) | On Insert: Yes On Update: No | The user's middle name. | E |
Usage Example(s)
Code Block | ||||||
---|---|---|---|---|---|---|
| ||||||
<b:Manager> <b:UserDisplayName>Betty Smith</b:UserDisplayName> <b:UserId i:nil="true"/> <b:UserReferenceSystemId>Partner - 01</b:UserReferenceSystemId> <b:UserUid>1152921504607011056</b:UserUid> <b:EmailAddress>betty@revcorp.bb</b:EmailAddress> <b:FirstName>Betty</b:FirstName> <b:LastName>Smith</b:LastName> <b:MiddleName i:nil="true"/> </b:Manager> |