POST
/
api
/
v1
/
auth
/
register
Register
curl --request POST \
  --url https://api.jobsim.work/api/v1/auth/register \
  --header 'Content-Type: application/json' \
  --data '
{
  "email": "<string>",
  "password": "<string>",
  "organization_name": "<string>",
  "first_name": "<string>",
  "last_name": "<string>",
  "phone": "<string>",
  "location": "<string>",
  "education": [],
  "skills": [],
  "experience": [],
  "dream_role": "<string>",
  "experience_level": "<string>",
  "career_goals": "<string>",
  "hobbies": [],
  "certifications": []
}
'
{
  "access_token": "<string>",
  "user_id": "<string>",
  "username": "<string>",
  "organization_id": "<string>",
  "token_type": "bearer"
}

Body

application/json
email
string
required
password
string
required
organization_name
string
required
first_name
string
required
last_name
string
required
phone
string | null
location
string | null
education
Education · object[]
skills
string[]
experience
Experience · object[]
dream_role
string | null
experience_level
string | null
career_goals
string | null
hobbies
string[]
certifications
Certifications · object[]

Response

Successful Response

access_token
string
required
user_id
string
required
username
string
required
organization_id
string
required
role
enum<string>
required
Available options:
super_admin,
admin,
hr,
executive,
employee,
bot
token_type
string
default:bearer