Get User
Get user's profile
Path Parameters
The id of the company
The id of the user
- 200
- 404
A user object
Schema
Unique ID of the the user
Email of the user
Date the user was created
Date the user was last updated
Date the user was deleted
List of teams the user is part of
about object
Profile details (* only available in premium plans)
First name of the user
Last name of the user
Job title
Birthday of the user in MM/DD format*
Date the user joined the company in YYYY-MM-DD format*
homeCity object nullable
City where the user lives*
Main text
Secondary text
List of ingredients that defines the user*
List of languages the user speaks*
List of favorite foods*
List of activities the user likes*
List of music the user likes*
List of sports the user likes*
List of movies & TV shows the user likes*
List of skills the user has*
List of books the user likes*
List of topics the user can mentor*
List of topics the user wants to learn*
preferences object
User preferences (only available in premium plans)
slack object
Whether the user has linked their Slack account
Slack ID of the user
Slack ID of the team
Slack name of the user
googleCalendar object
Whether the user has linked their Google Calendar
microsoftOutlook object
Whether the user has linked their Microsoft Outlook
Custom attributes (only available in premium plans)
{
"id": "2e8f9915-fda0-450c-95a3-d61f93c66fa9",
"email": "john.doe@yourdomain.com",
"createdAt": "2021-01-01T00:00:00.000Z",
"updatedAt": "2021-01-01T00:00:00.000Z",
"deletedAt": "2021-01-01",
"teams": [
"2e8f9915-fda0-450c-95a3-d61f93c66fa9"
],
"about": {
"firstname": "John",
"lastname": "Doe",
"position": "Software Engineer",
"birthday": "03/26",
"startDate": "03-26-2021",
"homeCity": {
"main": "San Francisco",
"secondary": "California"
},
"ingredients": [
"Digital Nomad"
],
"languages": [
"English"
],
"favoriteFoods": [
"Pizza"
],
"activities": [
"Hiking"
],
"music": [
"Rock"
],
"sports": [
"Football"
],
"movies": [
"Star Wars"
],
"skills": [
"JavaScript"
],
"books": [
"Harry Potter"
],
"mentor": [
"Product Management"
],
"mentee": [
"Product Design"
]
},
"preferences": {
"slack": {
"linked": true,
"userID": "W12345678",
"teamID": "T12345678",
"name": "John"
},
"googleCalendar": {
"linked": true
},
"microsoftOutlook": {
"linked": true
}
},
"customAttributes": {}
}
An error when user is not found
Schema
Error message
{
"message": "User not found"
}