GET
/
api
/
v1
/
profile
/
me
{
  "email": "jsmith@example.com",
  "username": "<string>",
  "id": 123,
  "auth_id": "<string>",
  "is_active": true,
  "is_verified": true,
  "last_login": "2023-11-07T05:31:56Z",
  "created_at": "2023-11-07T05:31:56Z",
  "updated_at": "2023-11-07T05:31:56Z",
  "full_name": "<string>",
  "bio": "<string>",
  "avatar_url": "<string>",
  "roles": []
}

Get the profile information for the currently authenticated user.

  • Method: GET
  • Path: /api/v1/profile/me

Response

Returns a ProfileSchema object.

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Response

200 - application/json

Successful Response

The response is of type object.