Skip to content

Latest commit

 

History

History
35 lines (24 loc) · 417 Bytes

signup.md

File metadata and controls

35 lines (24 loc) · 417 Bytes

Signup new user

Creates new user with given email, password and type.

URL : /signup

Method : POST

Header :

"Content-Type": "application/json"

Body :

{
    "email": "[valid email]",
    "password": "[valid password]",
    "type": "[Applicant || Recruiter]"
}

Success Reponse

Code : 201 Created

Body :

{
    "_id_": "[ID of new user]"
}