users
Get user
Returns a single user's details by ID, including name, email, and role.
AuthorizationBearer <token>
API key authentication - use your Late API key as a Bearer token
In: header
Path Parameters
userIdstring
Response Body
application/json
application/json
application/json
curl -X GET "https://getlate.dev/api/v1/users/string"{
"user": {
"_id": "6507a1b2c3d4e5f6a7b8c9d0",
"name": "John Doe",
"email": "john@example.com",
"role": "owner",
"isRoot": true,
"profileAccess": [
"all"
]
}
}{
"error": "Unauthorized"
}Empty
{
"error": "Not found"
}