Skip to main content
GET
/
v1
/
users
/
me
Get Current User Profile
curl --request GET \
  --url https://api.mileiq.com/v1/users/me
{
  "id": "<string>",
  "userName": "<string>",
  "name": {
    "givenName": "<string>",
    "familyName": "<string>",
    "formatted": "<string>"
  },
  "emails": [
    {
      "value": "<string>",
      "type": "<string>",
      "primary": true
    }
  ],
  "active": true,
  "displayName": "<string>"
}

Headers

Authorization
string

Response

Successfully retrieved current user profile. Returns detailed user information including name, email addresses, username, and account status.

Complete user profile information including identity, contact details, and account status

id
string
required

Unique identifier for the user (Parse ID) - used for API operations and internal references

userName
string
required

User's login username, typically their email address used for authentication

name
object
required

Structured name information including first name, last name, and formatted display name

emails
Email · object[]
required

Collection of email addresses associated with the user, including primary/secondary designation and type classification

active
boolean
default:true

Account status flag indicating whether the user account is currently active and operational

displayName
string | null

Formatted display name used throughout the application interface for user identification