-
Notifications
You must be signed in to change notification settings - Fork 3
PUT users.password
This route makes it possible to update the users password.
Permissions:
-
Admin, Family, Educator and Health Professional users can update their own password only.
-
Application and Child users cannot have their password updated via this route, their password can only be reset through this route.
educators:update, families:update, healthprofessionals:update
user_id: string (A 24-byte hex ID)
{
"old_password": "old_password_here",
"new_password": "new_password_here"
}
curl -X PUT "https://localhost/v1/users/5a62be07de34500146d9c544/password" -H "accept: /" -H "Authorization: Bearer YOUR_ACCESS_TOKEN" -H "Content-Type: application/json" -d "{"old_password":"old_password_here","new_password":"new_password_here"}"
-
204
Operation successfully performed. The password has been updated and no data to be returned. -
400
Validation errors-
- Example
{ "code": 400, "message": "Required fields were not provided...", "description": "old_password, new_password are required!" }
- Example
-
- Example
{ "code": 400, "message": "One or more request fields are invalid...", "description": "old_password must have at least one character!" }
- Example
-
- Example
{ "code": 400, "message": "One or more request fields are invalid...", "description": "old_password must be a string!" }
- Example
-
Old password does not match current user password
{ "code": 400, "message": "Password does not match!", "description": "The old password parameter does not match with the actual user password." }
-
403
Permission Error
OCARIoT API Gateway (Full documentation)
- POST institutions
- GET institutions
- GET institutions.inst_id
- PATCH institutions.inst_id
- DELETE institutions.inst_id
- POST children.physicalactivities
- GET children.physicalactivities
- GET children.physicalactivities.activity_id
- DELETE children.physicalactivities.activity_id
- POST children.weights
- GET children.weights
- GET children.weights.weight_id
- DELETE children.weights.weight_id
- POST children.bodyfats
- GET children.bodyfats
- GET children.bodyfats.bodyfat_id
- DELETE children.bodyfats.bodyfat_id
- POST educators.children.groups
- GET educators.children.groups
- GET educators.children.groups.group_id
- PATCH educators.children.groups.group_id
- DELETE educators.children.groups.group_id
- POST healthprofessionals
- GET healthprofessionals
- GET healthprofessionals.hprof_id
- PATCH healthprofessionals.hprof_id
- POST healthprofessionals.children.groups
- GET healthprofessionals.children.groups
- GET healthprofessionals.children.groups.group_id
- PATCH healthprofessionals.children.groups.group_id
- DELETE healthprofessionals.children.groups.group_id
- POST institutions.environments
- GET institutions.environments
- DELETE institutions.environments
- DELETE institutions.environments.environment_id
- Invalid ID
- Invalid JSON format
- Missing fields
- Empty string
- Invalid string
- Invalid date
- Negative number
- Invalid number
- Unregistered institution
- Unregistered children
- Invalid children attribute type
- Invalid children items
- Empty ID(s) in children attribute
- ID(s) with invalid format in children
- Attempting to update password on wrong route
- Child does not exist
- Institution does not exist