/api/v1/customer/set-new-password

Set a new password based on one time token given from user verification e-mail.

List of error codes:

Code Message
E001 Change password failed.
E002 You have entered a previously used password. For security reasons, please enter a new and unique password.
E003 Reset password request does not exist.
E004 Reset password request has been expired.
post
Tags:customer
Operation ID: postApiV1CustomerSet-new-password
Query Parameters
apiKeystring
required

Your BizKitHub API key (passed as GET parameter)

Body
tokenstring
required

System one time token given from user verification e-mail.

Example: "Hm2cDfmTS8x49Mo67gOxId8gEwNBwf1A"
passwordstring
required
Example: "1234"
customerRealIpstring
optional
Example: "1.1.1.1"
Responses
200

No description

Base URL:
https://bizkithub.com

Example Request

fetch('https://bizkithub.com/api/v1/customer/set-new-password?apiKey=YOUR_API_KEY', {
  method: 'POST',
  headers: {
    'Content-Type': 'application/json'
  },
  body: JSON.stringify({
        "token": "Hm2cDfmTS8x49Mo67gOxId8gEwNBwf1A",
        "password": "1234",
        "customerRealIp": "1.1.1.1"
    })
})

Example Response

HTTP 200Success Response
{
  "success": true,
  "data": {
    "message": "Example response"
  }
}

🔑 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