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. User

GET /user/:userID/resumes

PreviousGET /user/:userIDNextPOST /user/token

Last updated 2 years ago

This endpoint returns the resume object. By default, resume ID, name, and creation timestamp are only returned. See for more details.

Get resumes ID for a user

GET https://open-api.rezi.ai/v1/user/:userID/resumes

Path Parameters

Name
Type
Description

userID*

String

User 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 key

{
    "status": "success",
    "data": [resumeObject,resumeObject],
    "total": 2
}
{
    // Response
}
{
    "code": 401,
    "message": "Jwt verification fails"
}
{
    "status": "No content",
    "message": "user not found"
}
resumeObject