/api/v1/customer/register-account-verify

API endpoint documentation

post
Tags:customer
Operation ID: postApiV1CustomerRegister-account-verify
Query Parameters
apiKeystring
required

Your BizKitHub API key (passed as GET parameter)

Body
tokenstring
required
Responses
200

No description

Base URL:
https://bizkithub.com

Example Request

fetch('https://bizkithub.com/api/v1/customer/register-account-verify?apiKey=YOUR_API_KEY', {
  method: 'POST',
  headers: {
    'Content-Type': 'application/json'
  },
  body: JSON.stringify({
        "token": "example_token"
    })
})

Example Response

HTTP 200Success Response
{
  "success": true,
  "email": "jan@barasek.com",
  "returnUrl": "example_returnUrl"
}

🔑 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: January 2, 2026