Zum Inhalt springen
Leadtime
Deutsch
Esc
↑↓navigieren↵öffnen⌘Jvorschau

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/data
Authorization
AuthorizationOAuth2 access token · headerrequired
Scopes:api:read
or
AuthorizationBearer token (JWT) · headerrequired
Responses
200
addressCitystring | nullrequired

City

addressCountrystring | nullrequired

Country

addressHouseNumberstring | nullrequired

House number

addressStreetstring | nullrequired

Street address

addressZipstring | nullrequired

ZIP code

birthDatestring<date-time> | nullrequired

Birth date

degreestring | nullrequired

Degree

emailstring | nullrequired

Email address

firstNamestring | nullrequired

First name

idstringrequired

Organization member ID

lastNamestring | nullrequired

Last name

phonestring | nullrequired

Phone number

positionstring | nullrequired

Position

titlestring | nullrequired

Job title

401

Unauthorized - Invalid or missing authentication token

403

Forbidden - Insufficient API scopes or permissions

404

Organization member data not found

Try it
Server
Authorization
Request
curl -X GET "https://leadtime.app/api/public/account/org-member/data" \
  -H "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"
}