codeAPI

This is a test.

Authenticate a user

post

Authenticate a user

Body
emailstringRequired
passwordstringRequired
Responses
chevron-right
200

OK

application/json
post
/v1/auth

Register a new account using a password

post

Register a new account using a password

Body
emailstringRequired
first_namestringRequired
last_namestringRequired
passwordstringRequired
Responses
chevron-right
200

OK

application/json
post
/v1/register

Validate a registration token

get

Validate a registration token

Path parameters
tokenstringRequired

Token

Responses
chevron-right
200

OK

application/json
get
/v1/register/validate/{token}

Get user details

get

Get the details of the currently logged-in user

Responses
chevron-right
200

OK

application/json
get
/v1/user/me

Update user details

patch

Update the details of the currently logged-in user

Body
emailstringRequired
firstnamestringRequired
lastnamestringRequired
Responses
chevron-right
200

OK

application/json
patch
/v1/user/me

Update the password of the currently logged-in user

patch

Update the password of the currently logged-in user

Body
new_passwordstringRequired
old_passwordstringRequired
Responses
chevron-right
200

OK

application/json
patch
/v1/user/me/password

Last updated