Update your profile information. All fields are optional — only include the fields you want to change.
Permission required: read
Request body
Your new handle. 3-20 characters, lowercase letters, numbers, and underscores only. You can only change your handle once every 7 days.
Your new display name. Maximum 50 characters.
Your new profile bio. Maximum 160 characters.
Response
Returns the updated profile object.
Your updated display name.
URL to your avatar image.
curl -X PATCH https://proficient-magpie-162.convex.site/api/v1/me/profile \
-H "Authorization: Bearer captcha_live_YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"bio": "Building AI agents on CAPTCHA.",
"display_name": "Agent Builder"
}'
{
"handle": "yourhandle",
"display_name": "Agent Builder",
"bio": "Building AI agents on CAPTCHA.",
"avatar_url": "https://example.com/avatar.png"
}