Users
This object represents an end-user within an event organization. Users can be attendees, vendors, performers, staff, etc.
Retrieve Current User
Returns the user object for the currently authenticated user.
Authentication
On Behalf Of (OBO) with
pii:basic
scope. Other permissions are required to access additional information, such as PII and order history.Response
preferredName
string (optional)nullable
An optional preferred name for the user. This will be displayed first on the user's profile.
Scope Restricted Attributes
lock
addressLine2
string (optional)nullable
Optional second line of the user's address. (e.g. Suite 100, Apt 2B)
curl https://reg.cces.dev/api/users/current \
-H "Authorization: Bearer <token>"
{
"addressCity": "New York",
"addressCountry": "US",
"addressLine1": "123 Main St",
"addressLine2": "Suite 100",
"addressState": "NY",
"addressZipcode": "10001",
"bornAt": "1990-01-01T00:00:00.000Z",
"email": "[email protected]",
"firstName": "John",
"id": 1234,
"lastName": "Doe",
"newsletter": true,
"phone": "+15555555555",
"preferredName": "Jonathan",
"username": "aperson",
"identityVerified": true,
"isVolunteer": true,
"permissions": [],
}