curl --location --request PATCH '/profile/update-profile' \
--header 'Content-Type: application/json' \
--data '{
"bio": "I am a world-class software engineer with a passion for building scalable and user-friendly applications. I specialize in the MERN stack.",
"avatar": "https://example.com/path/to/my/new_avatar.jpg",
"background_cover": "https://example.com/path/to/my/new_background.png",
"links": [
"https://github.com/my-username",
"https://linkedin.com/in/my-profile",
"https://my-personal-website.com"
],
"tags": [
"Node.js",
"React",
"TypeScript",
"MongoDB",
"Software Architecture"
],
"portfolio": {
"projects": [
{
"title": "Creativity Verse API",
"description": "The backend API for a creative professional network, built with Node.js and Express.",
"url": "https://github.com/user/creativity-verse",
"imageUrl": "https://example.com/project-image.png"
},
{
"title": "Personal Portfolio Website",
"description": "A responsive portfolio site built with React and Tailwind CSS.",
"url": "https://my-portfolio.com"
}
]
}
}'