Get current user profile
/v1/auth/meReturns the authenticated admin's profile — id, email, name, avatar_url, email_verified, created_at, and the caller's account_role (owner/admin/member, or null when the token is not Account-bound) so the dashboard can gate owner-only surfaces. Guarded by UserJwtGuard.
Responses
application/json
data *AuthProfileDto
application/json
error *ApiErrorBodyDto
application/json
error *ApiErrorBodyDto
Returned object
curl -X GET "https://auth.canopy-io.com/v1/auth/me"
{ "data": { "id": "string", "email": "string", "first_name": "string", "last_name": "string", "avatar_url": "string", "pending_email": "string", "email_verified": false, "created_at": "2026-04-20T12:00:00.000Z", "account_role": "owner" } }
Tell us how we can improve this guide.