Resume object

The resume object can be returned in two ways: default and expanded version.

To return the expanded version, use the specific query option detailed on the endpoint documentation.

Default

{
   "id": "string"
   "name": "string",
   "createdAt": "string"
}   

Expand - listType = array

If you provide a query parameter listType = "array", you will receive items of a section as a list. If you are not using the query parameter listType, the section will be an object with the key ID of each item.

{
   "id": "string",
   "user": "string",
   "name": "string",
   "template": "string",
   "jobTitle": "string",
   "jobDescription": "string",
   "jobCompany": "string",
   "keywords": "string",
   "createdAt": "string"',
   "profilePicture": "string",
   "updatedAt": "string",
   "madeFrom": "string",
   "config": {
     "lineHeight": "number",
     "fontSize": "number",
     "showIcons": "boolean",
     "showPicture": "boolean",
   }
   "data": {
     "contact": {
       "name": "string",
       "email": "string",
       "phone": "string",
       "linkedin": "string",
       "website": "string",
       "country": {
         "label": "string",
         "value": "string"
       },
       "state": {
         "label": "string",
         "value": "string"
       },
       "city": {
         "label": "string",
         "value": "string"
       },
       "switchCountry": "boolean",
       "switchState": "boolean",
       "switchCity": "boolean"
     },
     "summary": {
       "summary": "string"
     },
     "experience": [
       {
         "index": "number",
         "company": "string",
         "location": "string",
         "duration": "string",
         "role": "string",
         "description": "string",
         "hide": "boolean"
       }
     ],
     "projects": [
       {
         "index": "number",
         "title": "string",
         "organization": "string",
         "date": "string",
         "description": "string",
         "hide": "boolean"
       }
     ],
     "education": [
       {
         "index": "number",
         "qualification": "string",
         "institution": "string",
         "location": "string",
         "date": "string",
         "minor": "string",
         "gpa": "string",
         "hide": "boolean"
       }
     ],
     "certification": [
       {
         "index": "number",
         "date": "string",
         "department": "string",
         "description": "string",
         "location": "string",
         "name": "string",
         "hide": "boolean"
       }
     ],
     "coursework": [
       {
         "index": "number",
         "department": "string",
         "date": "string",
         "name": "string",
         "skill": "string",
         "description": "string",
         "hide": "boolean"
       }
     ],
     "involvement": [
       {
         "index": "number",
         "organization": "string",
         "location": "string",
         "duration": "string",
         "role": "string",
         "description": "string",
         "hide": "boolean"
       }
     ],
     "skills": [
       {
         "index": "number",
         "skill": "string",
         "hide": "boolean"
       }
     ]
   }
}

Last updated