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

Return user information

PreviousGET /usersNextGET /user/:userID/resumes

Last updated 2 years ago

This endpoint will return the for the specific userID you specified.

Get user infos

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

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": {
        "userID": "123456789abc",
        "email": "charlebloomberg@gmail.com",
        "createdAt": "1655271138076",
        "lastSeen": "1655271138076"
   } 
}
{
    // Response
}
{
    "code": 401,
    "message": "Jwt verification fails"
}
{
    "status": "No content",
    "message": "user not found"
}
user object