Users
This object represents an end-user within an event organization. Users can be attendees, vendors, performers, staff, etc.
Search users
Search for users using a variety of filters. A maximum of 1000 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
nextPagestring (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.limitnumber (optional)The maximum number of results to return, between 1 and 1000. Defaults to 1000.
Show child attributes
Response
Show child attributes
preferredNamestring (optional)nullable
The preferred name of the user. If provided, this should be used instead of the first and last name, except where legally required.
addressAddress (optional)nullable
The address of the user. If PII is not required to register, the child attributes will be
null.Show child attributes
addressLine2string (optional)nullable
The second line of the address, such as an apartment number, if applicable.
nextPagestring (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": "johnny.test@concat.systems",
"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
}