Set private contact email
PUT
/users/me/private-contact
Sets the caller's private contact email (visible only to the FundlyHub team). Validates format, blocks disposable domains, and triggers a verification email when the address changes.
Authorizations
BearerAuth
Authentication is handled automatically via httpOnly session cookies after signing in at /cognito/signin or via Google SSO at /cognito/oauth/google. For Swagger UI testing, paste a JWT token from the /cognito/signin response.
Type
HTTP (bearer)
Request Body
application/json
JSON
{
"email": "string"
}
Responses
Private contact email saved
application/json
JSON
{
"success": true,
"email": "string",
"verified": true,
"message": "string"
}