PUSH User object
deprecated Represents a user.
Fields
Field | Type | Description |
---|---|---|
id required |
String | The unique ID of the user |
type required |
String | This is always USER |
name optional |
String | The name of the user |
person optional |
PUSH Person object | Reference to the person record. |
avatar optional |
PUSH Media object | An optional avatar image. |
locale optional |
String | The locale code |
created optional |
Date/time | The creation date of the user account. |
timeZone optional |
String | The user's time zone. |
emailAddress optional |
String | The user's email address. |
domicile optional |
String | An optional country code. |
organization optional |
PUSH Organization object | The organization |
managingOrganization optional |
PUSH Organization object | The managing organization |
creator optional |
PUSH ClientApp | The application that created this user |
thirdPartyIds optional |
List of PUSH ThirdPartyId objects | An optional list of third party IDs |
Example
{
"id": "CkGyUQ2b5mNHxyCqkzflKg",
"name": "John Smith",
"emailAddress": "john@drillster.com",
"thirdPartyIds": [{
"thirdParty": "ABC",
"id": "123dzenab"
}]
}
Last updated on