Get organization member details
Returns complete details for a specific organization member.
What’s included:
- Basic information: Name, position, academic degree, date of birth, gender, active status
- Access to Leadtime: Whether the member can log in, their role ID, and associated user ID
- Contact details: Full address (street, city, ZIP, country, house number), phone, email, social network links
- Personality traits: Influence level, attitude level, and personality type classifications
- Avatar: Profile picture URL if available
- Timestamps: Creation and last update dates
Use cases:
- View complete member profile
- Check access permissions and login status
- Retrieve contact information for communication
- Review personality classifications for relationship management
GET
/organizations/members/{id}Authorization
AuthorizationOAuth2 access token · headerrequiredScopes:
api:reador
AuthorizationBearer token (JWT) · headerrequiredPath parameters
idstringrequiredResponses
200
addressCityobject | nullrequiredCity
addressCountryobject | nullrequiredCountry
addressHouseNumberobject | nullrequiredHouse number
addressStreetobject | nullrequiredStreet address
addressZipobject | nullrequiredZIP/postal code
attitudeLevelstring | nullrequiredAttitude level classification
Allowed:
EnthusiasticWellMeaningNeutralOpposingavatarIdobject | nullrequiredAvatar configuration ID. Use /api/avatars/public/{avatarId}.svg to render it.
avatarUrlobject | nullrequiredPublic URL to the member's generated avatar. Returns `null` if no avatar is configured. The URL can be used directly in image tags or for display purposes.
birthDateobject | nullrequiredDate of birth in ISO 8601 date format (YYYY-MM-DD). Returns `null` if not set.
canLoginbooleanrequiredWhether member can login to the system
createdAtstringrequiredISO 8601 timestamp indicating when the organization member was created.
degreeobject | nullrequiredAcademic degree
emailstringrequiredEmail address
firstNamestringrequiredFirst name
genderstring | nullrequiredGender
Allowed:
MaleFemaleidstringrequiredOrganization member ID
influenceLevelstring | nullrequiredInfluence level classification
Allowed:
LowMediumHighDominantisActivebooleanrequiredWhether member is active
lastNamestringrequiredLast name
organizationIdstringrequiredOrganization ID
personalityTypestring | nullrequiredPersonality type classification
Allowed:
DominantConscientiousSteadyInitiativephoneobject | nullrequiredPhone number
positionobject | nullrequiredPosition/role in organization
roleIdobject | nullrequiredUser role ID that determines the member's access permissions in Leadtime. Can be `null` if the member does not have login access.
socialNetworkLinkobject | nullrequiredSocial network profile link
titleobject | nullrequiredTitle/salutation
updatedAtstringrequiredISO 8601 timestamp indicating when the organization member was last updated.
userIdstringrequiredAssociated user ID
401Unauthorized - Invalid or missing authentication token
403Forbidden - Insufficient API scopes or permissions
Request
curl -X GET "https://leadtime.app/api/public/organizations/members/string" \
-H "Authorization: Bearer YOUR_ACCESS_TOKEN"const response = await fetch("https://leadtime.app/api/public/organizations/members/string", {
method: "GET",
headers: {
"Authorization": "Bearer YOUR_ACCESS_TOKEN"
}
});import requests
response = requests.get(
"https://leadtime.app/api/public/organizations/members/string",
headers={
"Authorization": "Bearer YOUR_ACCESS_TOKEN"
},
)Response
{
"addressCity": "New York",
"addressCountry": "USA",
"addressHouseNumber": "123A",
"addressStreet": "Main Street",
"addressZip": "12345",
"attitudeLevel": "Enthusiastic",
"avatarId": "123e4567-e89b-12d3-a456-426614174000",
"avatarUrl": "https://example.com/api/avatars/public/123e4567-e89b-12d3-a456-426614174000.svg",
"birthDate": "1990-01-15",
"canLogin": true,
"createdAt": "2024-01-15T10:30:00.000Z",
"degree": "Ph.D.",
"email": "john.doe@example.com",
"firstName": "John",
"gender": "Male",
"id": "123e4567-e89b-12d3-a456-426614174000",
"influenceLevel": "Low",
"isActive": true,
"lastName": "Doe",
"organizationId": "123e4567-e89b-12d3-a456-426614174000",
"personalityType": "Dominant",
"phone": "+1234567890",
"position": "Manager",
"roleId": "workspace-id_guest_",
"socialNetworkLink": "https://linkedin.com/in/johndoe",
"title": "Dr.",
"updatedAt": "2024-01-20T15:45:00.000Z",
"userId": "123e4567-e89b-12d3-a456-426614174000"
}Unauthorized - Invalid or missing authentication token
Forbidden - Insufficient API scopes or permissions