Skip to main content
GET
/
api
/
users
/
me
Get current user profile with organization
curl --request GET \
  --url http://localhost:3000/api/users/me
{
  "id": "<string>",
  "email": "<string>",
  "firstName": "<string>",
  "lastName": "<string>",
  "isEmailVerified": true,
  "lastLoginAt": "2023-11-07T05:31:56Z",
  "createdAt": "2023-11-07T05:31:56Z",
  "updatedAt": "2023-11-07T05:31:56Z",
  "organization": {
    "id": "<string>",
    "name": "<string>",
    "slug": "<string>",
    "country": "<string>",
    "industry": "<string>",
    "timezone": "<string>",
    "currency": "<string>",
    "createdAt": "2023-11-07T05:31:56Z",
    "updatedAt": "2023-11-07T05:31:56Z",
    "ice": "<string>"
  },
  "phone": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://docs.gomobile.ma/llms.txt

Use this file to discover all available pages before exploring further.

Response

Current user profile with organization

id
string
required
email
string
required
firstName
string
required
lastName
string
required
isEmailVerified
boolean
required
lastLoginAt
string<date-time>
required
createdAt
string<date-time>
required
updatedAt
string<date-time>
required
organization
object
required
phone
string | null