Users
This object represents an end-user within an event organization. Users can be attendees, vendors, performers, staff, etc.
Get user
Search for users using a variety of filters. A maximum of 100 results will be returned per request. If additional results are available, they can be retrieved using the nextPage
parameter from the previous response.
Authentication
Service Integration with
user:read
scope.Response
preferredName
string (optional)nullable
The preferred name of the user. If provided, this should be used instead of the first and ast name, except where legally required.
address
Address (optional)nullable
The address of the user. If PII is not required to register, the child attributes will be
null
.Show child attributes
addressLine2
string (optional)nullable
The second line of the address, such as an apartment number, if applicable.
{
"id": "1234",
"email": "[email protected]",
"preferredName": "JT",
"firstName": "John",
"lastName": "Test",
"username": "jtest",
"verified": true,
"phone": "+15555555555",
"address": {
"addressCity": "San Francisco",
"addressCountry": "US",
"addressLine1": "123 Main St",
"addressLine2": "Apt 1",
"addressState": "CA",
"addressZipcode": "94105"
}
}
Search users
Search for users using a variety of filters. A maximum of 100 results will be returned per request. If additional results are available, they can be retrieved using the nextPage
parameter from the previous response.
Authentication
Service Integration with
user:read
scope.Request
nextPage
string (optional)A cursor for pagination across multiple pages of results. Don't include this attribute on the first call. Use the
nextPage
parameter from the previous response for each subsequent request.limit
number (optional)The maximum number of results to return, between 1 and 100. Defaults to 100.
Show child attributes
Response
Show child attributes
preferredName
string (optional)nullable
The preferred name of the user. If provided, this should be used instead of the first and ast name, except where legally required.
address
Address (optional)nullable
The address of the user. If PII is not required to register, the child attributes will be
null
.Show child attributes
addressLine2
string (optional)nullable
The second line of the address, such as an apartment number, if applicable.
nextPage
string (optional)nullable
A cursor for pagination across multiple pages of results. If this attribute is present, there are more results available. Use this value in the
nextPage
parameter for the next request.{
"nextPage": "eyBsYXN0SWQ6IDEwMDAgfQ==",
"limit": 100,
"filter": {
"roleId": 12,
},
}
{
"data": [
{
"id": "1234",
"email": "[email protected]",
"preferredName": "JT",
"firstName": "John",
"lastName": "Test",
"username": "jtest",
"verified": true,
"phone": "+15555555555",
"address": {
"addressCity": "San Francisco",
"addressCountry": "US",
"addressLine1": "123 Main St",
"addressLine2": "Apt 1",
"addressState": "CA",
"addressZipcode": "94105"
},
},
],
"nextPage": null
}