v3

latestOpenAPI 3.1.02026-07-311725107.3 KB
User

Get authenticated user

Get the authenticated User based on the provided access token

get/user

Response

The currently authenticated user

idstring required
loginstring required
namestring required
emailstring email required
avatarUrlstring required
providerUrlstring required
createdAtstring date-time required
updatedAtstring date-time required

Example response

{
  "id": "usr_123",
  "login": "johndoe",
  "name": "John Doe",
  "email": "john@example.com",
  "avatarUrl": "https://avatars.githubusercontent.com/u/12345",
  "providerUrl": "https://github.com/johndoe",
  "createdAt": "2024-01-01T00:00:00.000Z",
  "updatedAt": "2024-01-01T00:00:00.000Z"
}