Skip to main content
POST
/
auth
/
set-password
Set initial password for invited user
curl --request POST \
  --url https://api.example.com/auth/set-password \
  --header 'Content-Type: application/json' \
  --data '
{
  "token": "<string>",
  "password": "<string>"
}
'
{
  "message": "Password has been reset successfully"
}

Body

application/json
token
string
required
password
string
required

Response

Password set successfully

message
string
required
Example:

"Password has been reset successfully"