- Auth
- Users
- Reports
- Room
- Device
- category
- Sensor
- Automation
Reset Password
Developing
PATCH
/auth/password/reset
authReset
Request
Body Params application/json
id
string
required
new_password
string
required
Example
{
"id": "string",
"new_password": "string"
}
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request PATCH '/auth/password/reset' \
--header 'Content-Type: application/json' \
--data-raw '{
"id": "string",
"new_password": "string"
}'
Responses
🟢200Success
application/json
Body
object {0}
Example
{
"message": "Password Change Sucessfully"
}