User Profiles¶
Manage user profile information separate from authentication data.
Get Profile¶
curl -X GET http://localhost:8000/api/sso/v1/users/USER_ID/profile \
-H "Authorization: Bearer TOKEN"
Update Profile¶
curl -X PATCH http://localhost:8000/api/sso/v1/users/USER_ID/profile \
-H "Authorization: Bearer TOKEN" \
-d '{
"first_name": "John",
"last_name": "Doe",
"avatar_url": "https://...",
"metadata": {
"department": "Engineering",
"phone": "+1234567890"
}
}'