Skip to main content
POST
/
users
cURL
curl --request POST \
  --url https://api.yourjobsearchgenius.ai/v1/users \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "firstName": "<string>",
  "lastName": "<string>",
  "email": "[email protected]",
  "uniqueUserId": "<string>"
}
'
{
  "data": {
    "_id": "<string>",
    "firstName": "<string>",
    "lastName": "<string>",
    "email": "<string>",
    "uniqueUserId": "<string>",
    "autoLoginUrl": "<string>"
  },
  "success": true
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
firstName
string
required

The first name of the user.

lastName
string
required

The last name of the user.

email
string<email>
required

Email address of the user.

uniqueUserId
string
required

Unique user ID assigned by the institution

Response

User created successfully

data
object
required
success
boolean
required

Indicates if the request was successful