Skip to content
Leadtime
English
Esc
↑↓navigate↵open⌘Jpreview

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 · headerrequired
Scopes:api:read
or
AuthorizationBearer token (JWT) · headerrequired
Path parameters
idstringrequired
Responses
200
addressCityobject | nullrequired

City

addressCountryobject | nullrequired

Country

addressHouseNumberobject | nullrequired

House number

addressStreetobject | nullrequired

Street address

addressZipobject | nullrequired

ZIP/postal code

attitudeLevelstring | nullrequired

Attitude level classification

Allowed:EnthusiasticWellMeaningNeutralOpposing
avatarIdobject | nullrequired

Avatar configuration ID. Use /api/avatars/public/{avatarId}.svg to render it.

avatarUrlobject | nullrequired

Public 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 | nullrequired

Date of birth in ISO 8601 date format (YYYY-MM-DD). Returns null if not set.

canLoginbooleanrequired

Whether member can login to the system

createdAtstringrequired

ISO 8601 timestamp indicating when the organization member was created.

degreeobject | nullrequired

Academic degree

emailstringrequired

Email address

firstNamestringrequired

First name

genderstring | nullrequired

Gender

Allowed:MaleFemale
idstringrequired

Organization member ID

influenceLevelstring | nullrequired

Influence level classification

Allowed:LowMediumHighDominant
isActivebooleanrequired

Whether member is active

lastNamestringrequired

Last name

organizationIdstringrequired

Organization ID

personalityTypestring | nullrequired

Personality type classification

Allowed:DominantConscientiousSteadyInitiative
phoneobject | nullrequired

Phone number

positionobject | nullrequired

Position/role in organization

roleIdobject | nullrequired

User role ID that determines the member's access permissions in Leadtime. Can be null if the member does not have login access.

socialNetworkLinkobject | nullrequired

Social network profile link

titleobject | nullrequired

Title/salutation

updatedAtstringrequired

ISO 8601 timestamp indicating when the organization member was last updated.

userIdstringrequired

Associated user ID

401

Unauthorized - Invalid or missing authentication token

403

Forbidden - Insufficient API scopes or permissions

Try it
Server
Authorization
Parameters
Request
curl -X GET "https://leadtime.app/api/public/organizations/members/string" \
  -H "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"
}