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 }
Creates a new user/student account.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
The first name of the user.
The last name of the user.
Email address of the user.
Unique user ID assigned by the institution
User created successfully
Show child attributes
ID of the created user (MongoDB ObjectId)
Auto login URL for the user
Indicates if the request was successful