RMS Guide
  • Rezi RMS Introduction
  • Rezi RMS CONFIGURATIONS
    • RMS Branding
    • Login Customization
      • Custom Token Implementation
    • URL Customization
      • How to connect my custom Domain to Rezi RMS ?
      • How to customize transactional email sender?
    • Section Video Customization
    • Sample Library Customization
      • Adding Cover Letter Samples
      • Adding Resume Samples
      • Adding Sample Category
    • Various Options
      • Mobile banner "Switch to desktop"
    • Pricing & Promotion
      • Pricing option
      • Promotion
      • Upgrade User Plan from API
    • Resume review
    • WebHook
      • How to add a new WebHook ?
      • Event List
        • Resume Section Saved
  • Rezi RMS Admin
    • Account Role Types
  • Rezi RMS Integration
    • Integration
  • REZI API
    • Overview
    • Private token API
    • User
      • User object
      • GET /users
      • GET /user/:userID
      • GET /user/:userID/resumes
      • POST /user/token
    • Resume
      • Resume object
      • GET /resume/:resumeID
      • GET /resume/:resumeID/download
      • GET /resume/:resumeID/score
      • POST /user/:userID/resume
    • Plans
      • POST /user/:userID/upgrade
Powered by GitBook
On this page
  1. REZI API
  2. Resume

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"
       }
     ]
   }
}
PreviousResumeNextGET /resume/:resumeID

Last updated 2 years ago