Skip to main content
POST
/
auth
/
reset-password
Reset password
curl --request POST \
  --url https://api.justanotheruptime.com/auth/reset-password \
  --header 'Content-Type: application/json' \
  --data '
{
  "token": "reset-token-uuid",
  "newPassword": "newpassword123"
}
'
{
  "message": "Password has been reset successfully"
}

Documentation Index

Fetch the complete documentation index at: https://docs.justanotheruptime.com/llms.txt

Use this file to discover all available pages before exploring further.

Body

application/json
token
string
required
Example:

"reset-token-uuid"

newPassword
string
required
Example:

"newpassword123"

Response

Password reset successful

message
string
required
Example:

"Password has been reset successfully"