Authorization: Bearer ********************{
"cvName": "My Professional CV",
"personalInfo": {
"address": "123 Professional Street",
"city": "San Francisco",
"zipCode": "94105",
"profession": "Senior Software Engineer",
"careerObjective": "Dedicated software engineer with a passion for creating scalable solutions and mentoring junior developers",
"phoneNumber": "+14155552671",
"nationality": "American",
"languages": [
{
"name": "English",
"proficiency": "Native"
},
{
"name": "Spanish",
"proficiency": "Intermediate"
}
],
"socialLinks": "linkedin.com/in/johndoe, github.com/johndoe"
},
"workExperiences": [
{
"company": "Tech Solutions Inc.",
"position": "Senior Software Engineer",
"startDate": "2020-01-15T00:00:00.000Z",
"isCurrent": true,
"description": "Lead developer for cloud-based enterprise solutions. Managing a team of 5 developers and architecting scalable applications."
},
{
"company": "Digital Innovations LLC",
"position": "Software Engineer",
"startDate": "2017-03-01T00:00:00.000Z",
"endDate": "2019-12-31T00:00:00.000Z",
"isCurrent": false,
"description": "Developed and maintained multiple web applications using Node.js and React."
}
],
"educations": [
{
"institution": "University of California, Berkeley",
"degree": "Master of Science in Computer Science",
"startDate": "2015-08-15T00:00:00.000Z",
"endDate": "2017-05-20T00:00:00.000Z",
"isCurrent": false,
"description": "Specialized in Artificial Intelligence and Machine Learning"
}
],
"skills": [
{
"name": "Node.js",
"level": "Expert"
},
{
"name": "React",
"level": "Advanced"
},
{
"name": "Python",
"level": "Intermediate"
}
],
"awards": [
{
"title": "Outstanding Innovation Award",
"issuer": "Tech Solutions Inc.",
"date": "2022-11-15T00:00:00.000Z",
"description": "Awarded for developing an AI-powered optimization algorithm that reduced server costs by 40%"
}
],
"projects": [
{
"name": "E-commerce Platform Redesign",
"url": "https://github.com/johndoe/ecommerce-platform",
"description": "Led the complete redesign and implementation of a high-traffic e-commerce platform serving 100k+ daily users"
}
],
"certificates": [
{
"name": "AWS Solutions Architect Professional",
"issuer": "Amazon Web Services",
"date": "2023-06-01T00:00:00.000Z",
"url": "https://aws.amazon.com/certification/verify"
}
]
}curl --location 'http://localhost:3000/api/v1/cv-builder' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"cvName": "My Professional CV",
"personalInfo": {
"address": "123 Professional Street",
"city": "San Francisco",
"zipCode": "94105",
"profession": "Senior Software Engineer",
"careerObjective": "Dedicated software engineer with a passion for creating scalable solutions and mentoring junior developers",
"phoneNumber": "+14155552671",
"nationality": "American",
"languages": [
{
"name": "English",
"proficiency": "Native"
},
{
"name": "Spanish",
"proficiency": "Intermediate"
}
],
"socialLinks": "linkedin.com/in/johndoe, github.com/johndoe"
},
"workExperiences": [
{
"company": "Tech Solutions Inc.",
"position": "Senior Software Engineer",
"startDate": "2020-01-15T00:00:00.000Z",
"isCurrent": true,
"description": "Lead developer for cloud-based enterprise solutions. Managing a team of 5 developers and architecting scalable applications."
},
{
"company": "Digital Innovations LLC",
"position": "Software Engineer",
"startDate": "2017-03-01T00:00:00.000Z",
"endDate": "2019-12-31T00:00:00.000Z",
"isCurrent": false,
"description": "Developed and maintained multiple web applications using Node.js and React."
}
],
"educations": [
{
"institution": "University of California, Berkeley",
"degree": "Master of Science in Computer Science",
"startDate": "2015-08-15T00:00:00.000Z",
"endDate": "2017-05-20T00:00:00.000Z",
"isCurrent": false,
"description": "Specialized in Artificial Intelligence and Machine Learning"
}
],
"skills": [
{
"name": "Node.js",
"level": "Expert"
},
{
"name": "React",
"level": "Advanced"
},
{
"name": "Python",
"level": "Intermediate"
}
],
"awards": [
{
"title": "Outstanding Innovation Award",
"issuer": "Tech Solutions Inc.",
"date": "2022-11-15T00:00:00.000Z",
"description": "Awarded for developing an AI-powered optimization algorithm that reduced server costs by 40%"
}
],
"projects": [
{
"name": "E-commerce Platform Redesign",
"url": "https://github.com/johndoe/ecommerce-platform",
"description": "Led the complete redesign and implementation of a high-traffic e-commerce platform serving 100k+ daily users"
}
],
"certificates": [
{
"name": "AWS Solutions Architect Professional",
"issuer": "Amazon Web Services",
"date": "2023-06-01T00:00:00.000Z",
"url": "https://aws.amazon.com/certification/verify"
}
]
}'{
"message": "CV created successfully",
"status": "Success",
"data": {
"email": "testing@gmail.com",
"id": 2
}
}