Skip to main content

Confirm Password Reset

Overview

{
"name": "Confirm Password Reset",
"route": "POST /customer/forgot/confirm",
"description": "Confirm a password reset for a user customer account under a merchant.",
"parameters": [],
"body": {
"schema": {
"email": "string",
"token": "string",
"password": "string"
},
"example": {
"email": "[email protected]",
"token": "reset_token_123",
"password": "newSecurePassword123"
}
},
"response": {
"success": {
"code": 201,
"description": "Returns a boolean indicating whether the password reset was successful"
},
"error": [
{
"code": 400,
"description": "Bad Request - Invalid input or token"
}
]
},
"notes": [
"This endpoint requires InternalGuard."
]
}