User Data (Get)
Description
This endpoint retrieves user information based on the email address.
HTTP Method
get
URL
/api/v2/persons/userdataByEmails
Query Parameters
| Name | Type |
|---|---|
| speakerEmails | array required <string> |
Response
[
{
"KeyEmail": "string",
"PersonalData": {
"FirstName": "string",
"LastName": "string",
"NameOnID": "string",
"Prefix": "string",
"Suffix": "string",
"HomeSiteID": "string",
"Gender": "string",
"Email": "string",
"JobTitle": "string",
"UserRole": "string",
"DateOfBirth": "string",
"Phone1": "string",
"Phone2": "string",
"Address": "string",
"City": "string",
"StateProvince": "string",
"PostalCode": "string",
"Country": "string",
"CompanyName": "string",
"CorporateID": "string",
"Biography": "string",
"ProfilePicture": "string",
"IsActive": "string",
"IsUser": "string",
"IsSpeaker": "string",
"IsExternal": "string"
},
"ReturnCode": 0
}
]
Example
[
{
"KeyEmail": "johndoe@example.com",
"PersonalData": {
"FirstName": "John",
"LastName": "Doe",
"NameOnID": "Johnathan Doe",
"Prefix": "Mr.",
"Suffix": "Jr.",
"HomeSiteID": "HS12345",
"Gender": "Male",
"Email": "johndoe@example.com",
"JobTitle": "Software Engineer",
"UserRole": "User",
"DateOfBirth": "1990-01-01",
"Phone1": "+1234567890",
"Phone2": "+0987654321",
"Address": "1234 Main St",
"City": "Metropolis",
"StateProvince": "Metro State",
"PostalCode": "12345",
"Country": "Exampleland",
"CompanyName": "Tech Innovations Inc",
"CorporateID": "CI23456",
"Biography": "John is a software engineer with over 10 years of experience in creating innovative tech solutions.",
"ProfilePicture": "http://example.com/path/to/image.jpg",
"IsActive": "true",
"IsUser": "true",
"IsSpeaker": "false",
"IsExternal": "false"
},
"ReturnCode": 0
}
]
Success Response
Code: 200 OK