UserMe
Response for GET /auth/me - current user info with default organization
Properties
allOf:
- → UserInfo
Property Type Required Description avatar_urlstring,null No created_atstring Yes emailEmail Yes idstring Yes namestring Yes statusUserStatus Yes Property Type Required Description default_organization_idstring Yes The user's default organization ID for API calls requiring an organization context. This is typically the first organization the user joined (their personal org).
View JSON Schema
{
"allOf": [
{
"$ref": "#/components/schemas/UserInfo"
},
{
"type": "object",
"required": [
"default_organization_id"
],
"properties": {
"default_organization_id": {
"type": "string",
"format": "uuid",
"description": "The user's default organization ID for API calls requiring an organization context.\nThis is typically the first organization the user joined (their personal org)."
}
}
}
],
"description": "Response for GET /auth/me - current user info with default organization"
}