# /me/change-info - Change current user information **POST /me/change-info** Allow the current authenticated user to change their name, email, and phone number. Name and email cannot be empty if provided. ## Servers - Backend API server (port 8080): https://api.your-domain.com/api (Backend API server (port 8080)) - Collect API server (port 8081): https://collect.your-domain.com/api (Collect API server (port 8081)) ## Authentication methods - Bearer auth ## Parameters ### Body: application/json (object) - **name** (string) User's full name (cannot be empty if provided) - **email** (string(email)) User's email address (cannot be empty if provided) - **phone** (string | null) User's phone number (can be empty to remove) ## Responses ### 200 User information changed successfully #### Body: application/json (object) - **code** (integer) - **message** (string) - **data** (object | null) ### 400 Bad request - validation error for name or phone #### Body: application/json (object) - **code** (integer) - **message** (string) - **data** (object) ### 401 Unauthorized - invalid or missing JWT token #### Body: application/json (object) - **code** (integer) - **message** (string) - **data** (object | null) ### 500 Internal server error #### Body: application/json (object) - **code** (integer) - **message** (string) - **data** (object | null) [Powered by Bump.sh](https://bump.sh)