Overview
Users represent the people who use Plane. The Users API allows you to retrieve information about the current authenticated user.
The User Object
Attributes
iduuidUnique identifier for the user
first_namestringFirst name of the user
last_namestringLast name of the user
emailstringEmail address of the user
avatarstringAvatar identifier for the user
avatar_urlstringURL of the user's avatar image
display_namestringDisplay name of the user
Response200
json
{
"id": "16c61a3a-512a-48ac-b0be-b6b46fe6f430",
"first_name": "John",
"last_name": "Doe",
"email": "john.doe@example.com",
"avatar": "avatar-123",
"avatar_url": "https://example.com/avatars/avatar-123.png",
"display_name": "John Doe"
}
