Get Profile
Get the current authenticated user's profile information.
GET
https://api.uptimetea.com/auth/profileHeaders
AuthorizationREQUIRED
STRING
Bearer $TOKENResponse body
{
"id": "uuid",
"first_name": "John",
"last_name": "Doe",
"email": "user@example.com",
"avatar_url": null,
"locale": "en",
"timezone": "UTC",
"theme": "light"
}Code Examples
curl -X GET "https://api.uptimetea.com/auth/profile" \
-H "Authorization: Bearer $TOKEN"