Skip to main content
GET
/
api
/
user
/
me
Get this session user
curl --request GET \
  --url https://localhost:8080/api/user/me
{
  "id": 123,
  "email": "<string>",
  "fullName": "<string>",
  "phoneNumber": "<string>",
  "street": "<string>",
  "city": "<string>",
  "province": "<string>",
  "postalCode": "<string>",
  "expertise": "apprentice",
  "role": "farmer",
  "active": true
}

Response

200 - */*

OK

id
integer
email
string
fullName
string
phoneNumber
string
street
string
city
string
province
string
postalCode
string
expertise
enum<string>
Available options:
apprentice,
adept,
expert
role
enum<string>
Available options:
farmer,
receptionist,
sprayer,
admin
active
boolean
I