/api/v1/customer/reset-password
Create a new reset password request and send verification mail to customer automatically.
post
Tags:customer
Operation ID:
postApiV1CustomerReset-password
Query Parameters
Body
email
stringExample: "jan@barasek.com"
expirationTime
stringExample: "3h 20m"
customerRealIp
stringExample: "1.1.1.1"
Responses
200
No description
Base URL:
https://bizkithub.com
Example Request
fetch('https://bizkithub.com/api/v1/customer/reset-password?apiKey=YOUR_API_KEY', {
method: 'POST',
headers: {
'Content-Type': 'application/json'
},
body: JSON.stringify({
"email": "jan@barasek.com",
"expirationTime": "3h 20m",
"customerRealIp": "1.1.1.1"
})
})
Example Response
HTTP 200Success Response
{
"success": false
}
🔑 API Key Required
All BizKitHub API endpoints require authentication using an API key. The API key must be passed as a GET parameter in the URL for all requests.
Back to API Documentation
Last updated: August 6, 2025