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

GET /resume/:resumeID

GET Resume (JSON format) from Resume ID

Get specific resume in JSON format

GET https://open-api.rezi.ai/v1/resume/:resumeID

Path Parameters

Name
Type
Description

resumeID*

String

Resume ID

Query Parameters

Name
Type
Description

listType

String

"array" or null to get the id of section Item. See Resume Object for more information

Headers

Name
Type
Description

Authentication*

String

"Bearer PRIVATE_TOKEN_API_KEY" Authentication token to secure and track down your usage. Use this specific format with your Private API key

{
    "status": "success",
    "data": resumeObject
}
{
    // Response
}
{
    "code": 401,
    "message": "Jwt verification fails"
}
{
    status: 'No content',
    message: 'resume not found',
}
PreviousResume objectNextGET /resume/:resumeID/download

Last updated 2 years ago