PUSH User object

Represents a user account.

Fields

Field Type Description
id
required
String The Drillster user ID.
name
required
String The user's name.
emailAddress
optional
String The user's email address.
thirdPartyIds
optional
List of PUSH ThirdPartyId objects An optional list of third party IDs by which the user is known.

Example

{
  "emailAddress": "jane@example.com",
  "id": "hs50JqogSRiKSC18ivnOmw",
  "name": "Jane Doe",
  "thirdPartyIds": [
    {
      "id": "abc123",
      "thirdParty": "EXAMPLE"
    }
  ]
}

 

Last updated on