Get User by ID or Email
GET
/user/{user_id}
User
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/user/'
Response Response Example
200 - Example 1
{
"authentication_providers": [
{
"provider": "google-oauth2",
"provider_user_id": 1234
}
],
"avatar": {
"url": "https://res.cloudinary.com/startup-grind/image/upload/.../image.png",
"path": "image.png",
"thumbnail_width": 720,
"thumbnail_height": 540,
"thumbnail_format": "auto",
"thumbnail_url": "https://res.cloudinary.com/startup-grind/image/upload/.../image.png"
},
"company": "Bevy",
"cropped_avatar_url": "https://res.cloudinary.com/startup-grind/image/fetch/.../image.jpeg",
"extra_data": {},
"title": "Mr.",
"role": {
"id": 1234,
"name": "Prospective",
"description": "Prospective Member",
"user_active_status": true
},
"email": "user@mail.com",
"first_name": "John",
"id": 1234,
"last_name": "Doe",
"username": "string"
}
Request
Path Params
user_id
string
required
Query Params
fields
string
optional
Can use any of the fields listed in the user details endpoint separated by commas.