Forgot Password Validation
API URL
{{url}}/fhir-user-service/users/forgot-password
Method
POST
Request Headers
Authorization : Bearer [token]
Description
Handles forgot password validation
Input
Field Name
Type
Example
Authorization(Header)
String
Authorized token from login response
username
String
Username
Sample Input:
{
"username": "[email protected]"
}
Sample Output:
{
"dateTime": 1713446803563,
"status": true,
"errorCode": 200,
"message": "An email will send if the account exists in our system.",
}
Last updated