Skip to main content
GET
/
api
/
user
/
profile
Get user profile
curl --request GET \
  --url https://platform.usewarp.net/api/user/profile \
  --header 'Authorization: Bearer <token>'
{
  "profile": {
    "id": "<string>",
    "email": "jsmith@example.com",
    "onboarding_completed": true,
    "is_admin": true,
    "created_at": "2023-11-07T05:31:56Z",
    "updated_at": "2023-11-07T05:31:56Z",
    "first_name": "<string>",
    "last_name": "<string>"
  }
}

Authorizations

Authorization
string
header
required

JWT Bearer token authentication

Response

User profile retrieved successfully

profile
object