Get organization member profile data
Returns detailed organization member profile information including personal data, contact information, and address.
What is returned:
- Personal information (name, email, phone, birth date)
- Professional details (title, degree, position)
- Complete address information
Note: This endpoint is only available for organization member accounts (not employees). Organization members are external contacts (e.g., clients, partners) who have access to the workspace.
GET
/account/org-member/dataAuthorization
AuthorizationOAuth2 access token · headerrequiredScopes:
api:reador
AuthorizationBearer token (JWT) · headerrequiredResponses
200
addressCitystring | nullrequiredCity
addressCountrystring | nullrequiredCountry
addressHouseNumberstring | nullrequiredHouse number
addressStreetstring | nullrequiredStreet address
addressZipstring | nullrequiredZIP code
birthDatestring<date-time> | nullrequiredBirth date
degreestring | nullrequiredDegree
emailstring | nullrequiredEmail address
firstNamestring | nullrequiredFirst name
idstringrequiredOrganization member ID
lastNamestring | nullrequiredLast name
phonestring | nullrequiredPhone number
positionstring | nullrequiredPosition
titlestring | nullrequiredJob title
401Unauthorized - Invalid or missing authentication token
403Forbidden - Insufficient API scopes or permissions
404Organization member data not found
Request
curl -X GET "https://leadtime.app/api/public/account/org-member/data" \
-H "Authorization: Bearer YOUR_ACCESS_TOKEN"const response = await fetch("https://leadtime.app/api/public/account/org-member/data", {
method: "GET",
headers: {
"Authorization": "Bearer YOUR_ACCESS_TOKEN"
}
});import requests
response = requests.get(
"https://leadtime.app/api/public/account/org-member/data",
headers={
"Authorization": "Bearer YOUR_ACCESS_TOKEN"
},
)Response
{
"addressCity": "Berlin",
"addressCountry": "Germany",
"addressHouseNumber": "12",
"addressStreet": "Main Street",
"addressZip": "12345",
"birthDate": "1990-01-01T00:00:00.000Z",
"degree": "Bachelor",
"email": "john.doe@example.com",
"firstName": "John",
"id": "member_123",
"lastName": "Doe",
"phone": "+49 123 456789",
"position": "Senior Developer",
"title": "Software Engineer"
}Unauthorized - Invalid or missing authentication token
Forbidden - Insufficient API scopes or permissions
Organization member data not found