GET /api/v2/account/get
Returns the full profile of a single participant registered for a given event. The account can be looked up by internal ID, External ID, or email address.
Authentication
Authorization: Bearer <your_api_key>
Endpoint
GET /api/v2/account/get
Query Parameters
|
Parameter |
Type |
Required |
Accepted Values / Format |
Description |
|---|---|---|---|---|
|
|
integer |
Yes |
Valid event ID |
The ID of the event the participant is registered for |
|
|
string |
Yes |
|
The field to search by |
|
|
string |
Yes |
When |
The value to search for |
Response
Success Response (HTTP 200)
{
"code": 200,
"errors": null,
"data": { ... },
"response_id": "1700000000.12345"
}
The data object contains the full participant profile.
Response Fields
Identity
|
Field |
Type |
Description |
|---|---|---|
|
|
integer |
Internal account ID |
|
|
string or null |
External ID |
|
|
string or null |
External QR code value |
|
|
string |
EAN barcode assigned to the account |
|
|
string |
QR code value for the participant's badge |
|
|
string |
Participant status for this event (e.g. |
Personal Information
|
Field |
Type |
Description |
|---|---|---|
|
|
string or null |
Honorific title / salutation |
|
|
string |
First name |
|
|
string |
Last name |
|
|
string |
Email address / login |
|
|
string or null |
Job title |
|
|
string |
Company name |
|
|
string or null |
Country name |
|
|
string or null |
Region / state name |
|
|
string or null |
City name |
|
|
string or null |
Postal / ZIP code |
|
|
string or null |
Nationality |
|
|
string or null |
Street address |
|
|
string |
Phone number |
|
|
string or null |
Website URL |
|
|
string or null |
Date of birth |
|
|
string |
Profile photo URL |
|
|
string or null |
Participant biography |
|
|
string |
Matchmaking introduction message |
|
|
string or null |
Organisation name |
|
|
string or null |
Organisation ID |
|
|
string |
Default notification language code |
Event Participation
|
Field |
Type |
Description |
|---|---|---|
|
|
integer |
Participant category ID for this event |
|
|
string |
Participant category name |
|
|
integer |
Associated exhibitor ID ( |
|
|
string |
Exhibitor category ID |
|
|
string or null |
Role within the exhibitor team |
|
|
boolean |
Whether the account has the speaker role for this event |
|
|
boolean |
Whether the account has the moderator role for this event |
|
|
integer or null |
Admin account assigned to this participant |
|
|
string |
Registration date in |
|
|
string |
Registration time in |
|
|
integer |
Unix timestamp of the last profile update |
Business Matching
|
Field |
Type |
Description |
|---|---|---|
|
|
string or null |
Semicolon-separated activity category IDs |
|
|
string or null |
Semicolon-separated interest category IDs |
Social Media
|
Field |
Type |
Description |
|---|---|---|
|
|
string or null |
Twitter / X URL |
|
|
string or null |
Facebook URL |
|
|
string or null |
LinkedIn URL |
|
|
string or null |
Instagram URL |
|
|
string or null |
YouTube URL |
Notification Settings
|
Field |
Type |
Description |
|---|---|---|
|
|
boolean |
Appointment confirmed notification enabled |
|
|
boolean |
Appointment cancelled notification enabled |
|
|
boolean |
Incoming appointment notification enabled |
|
|
boolean |
Rescheduled appointment notification enabled |
|
|
boolean |
New message notification enabled |
Connection Settings
|
Field |
Type |
Description |
|---|---|---|
|
|
integer |
Networking opt-in flag ( |
|
|
integer |
Allow meeting requests ( |
|
|
integer |
Allow messages ( |
|
|
integer |
Meetings feature flag ( |
|
|
integer |
Chat feature flag ( |
|
|
integer |
Daily meeting slot limit |
Barcodes
|
Field |
Type |
Description |
|---|---|---|
|
|
string |
External barcode value |
Error Responses
|
HTTP Code |
Condition |
Error Message |
|---|---|---|
|
400 |
|
|
|
400 |
|
|
|
400 |
|
|
|
400 |
|
|
|
400 |
|
|
|
400 |
|
|
|
400 |
|
|
|
400 |
|
|
|
400 |
Account exists but is not registered for this event |
|
|
403 |
Missing or invalid API key |
|
Example Request
curl -X GET "https://your-event-domain.com/api/v2/account/get?event_id=7&filter=email&value=john.doe@example.com" \
-H "Authorization: Bearer your_api_key_here"
Example Response
{
"code": 200,
"errors": null,
"data": {
"id": 12345,
"external_id": "EXT-00123",
"barcode": "109558106509",
"badge_qr": "109558106509",
"status": "ACTIVE",
"first_name": "John",
"last_name": "Doe",
"email": "john.doe@example.com",
"job_title": "Product Manager",
"company_name": "Acme Corp",
"country": "United Kingdom",
"category_id": 5,
"category_name": "Visitor",
"speaker": false,
"moderator": false,
"last_update": 1700000000
},
"response_id": "1700000000.12345"
}