POST /user/:userID/resume

Upload PDF/DOCX resume file or custom JSON file

PDF/DOCX IMPORT

Upload a resume file

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

Path Parameters

Name
Type
Description

userID*

String

User ID

Headers

Name
Type
Description

Content-Type*

String

application/pdf

Content-Length*

Integer

File length

Request Body

Name
Type
Description

file*

file

file

{
    // Response
}

CURL Example:

curl --location --request POST 'https://open-api.rezi.ai/v1/user/{userID}/resume' \
--header 'Authorization: Bearer {YOUR PRIVATE TOKEN}' \
--form '=@"/path/to/file/resume.pdf"'

NODE JS (REQUEST) Example:

JSON IMPORT

circle-info

To use JSON import, first contact your account administrator to get your custom JSON parser integrated to our system.

Upload a resume file

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

Path Parameters

Name
Type
Description

userID*

String

User ID

Query Parameters

Name
Type
Description

type*

String

"JSON"

client

String

"your_rms_name", you need to communicate your json format to the team first

Headers

Name
Type
Description

Content-Type*

String

application/json

Content-Length*

Integer

File length

Request Body

Name
Type
Description

*

String

CURL Example:

NODE JS (REQUEST) Example:

Last updated