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/download

Get a temporary available download link of a specific PDF resume

The link returned is available for 24 hours

Get downloadable PDF resume URL

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

Path Parameters

Name
Type
Description

resumeID*

String

Resume ID

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 k

{
    // Response
}
{
    "code": 401,
    "message": "Jwt verification fails"
}
{
    "status": "success",
    "data": "https://storage.googleapis.com/rezi-temp-download/:downloadUniqueID"
}
{
    status: 'No content',
    message: 'resume not found',
}
PreviousGET /resume/:resumeIDNextGET /resume/:resumeID/score

Last updated 2 years ago