/
Change User's Password/Email
Change User's Password/Email
A user's password and/or email can be updated by sending a PUT request to /api/users/{userId}
. To make these changes, the request must include the user's current password and/or email for verification.
Request
Key | Description |
---|---|
| The user's current password. |
| The password to which the user's password should be changed to. |
| The user's current email. |
| The email to which the user's email should be changed to. |
//change a user's password and/or email
PUT /api/users/c1e60c6b-a0a4-4d80-81eb-c1c6de729a0e HTTP/1.1
Host: user.gini.net
Authorization: BEARER 74c1e7fe-e464-451f-a6eb-8f0998c46ff6
Content-Type: application/json
//with
{"oldPassword":"supersecret","password:"anothersecret"}
//or
{"oldEmail":"old@email.com","email:"my.new@email.com"}
//or
{
"oldPassword":"supersecret",
"password":"anothersecret",
"oldEmail":"old@email.com",
"email":"my.new@email.com"}
, multiple selections available,
Related content
Create New User
Create New User
More like this
Authenticate on Behalf of User
Authenticate on Behalf of User
More like this
Overview of User Authentication Flows
Overview of User Authentication Flows
More like this
How to Manage Gini Accounts
How to Manage Gini Accounts
More like this
How to Process Documents
How to Process Documents
More like this
Certificate Pinning
Certificate Pinning
More like this