Skip to content

Get Current User Info

Retrieves the authenticated user's basic profile.

Endpoint

GET api/v1/user/me

Authorization

This route requires a valid Bearer token.

Request Example

curl -X GET https://api.sbox2.peoplecloudpro.com/api/v1/user/me \
  -H "Authorization: Bearer YOUR_TOKEN" \
  -H "Accept: application/json"

Response Example

{
  "id": 7,
  "name": "Lawunn",
  "email": "lawunnkhaing16@gmail.com",
  "company": "La"
}