-
Notifications
You must be signed in to change notification settings - Fork 0
/
ResumeBuilder Curl Request
50 lines (50 loc) · 1.94 KB
/
ResumeBuilder Curl Request
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
curl --location 'http://localhost:8080/resume' \
--header 'Accept: application/pdf' \
--header 'Content-Type: application/json' \
--data-raw '{
"template_id" : "1",
"personal_information" : {
"name": "Lorem",
"last_name": "ipsum",
"email_address": "[email protected]",
"phone_number": "+91 99xx14xx99",
"linkedin_url": "https://www.linkedin.com"
},
"job_title": "Software Development Engineer",
"career_objective" : "Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper.",
"skills": [
"Strong interpersonal",
"communication skills",
"Leadership",
"Poised under pressure"
],
"education": [
{
"school_name": "School",
"passing_year": "201X-201Y",
"description" : "There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don'\''t look even slightly believable."
},
{
"school_name": "College",
"passing_year": "203X-203Y",
"description" : "All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. The generated Lorem Ipsum is therefore always free from repetition, injected humour, or non-characteristic words etc"
}
],
"experience": [
{
"company_name": "Adobe",
"passing_year": "201X-201Y",
"responsibilities" : "It is a long established fact that a reader will be distracted by the readable content. Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod"
}
],
"achievements": [
{
"field" : "Academics",
"awards" : "Lorem ipsum dolor sit amet"
},
{
"field" : "Sports",
"awards" : "consectetuer adipiscing elit"
}
]
}'