/api/v1/support/contact-form

API endpoint documentation

post
Tags:support
Operation ID: postApiV1SupportContact-form
Query Parameters
apiKeystring
required

Your BizKitHub API key (passed as GET parameter)

Body
messagestring
required
Example: "Hello, how are you?"
subjectstring
optional
Example: "Request from Jan"
noticestring
optional
Example: "Internal notice"
sendToEmailstring
optional
Example: "jan@barasek.com"
categorySlugstring
optional
Example: "offer"
customerEmailstring
optional
Example: "info@brj.app"
customerPhonestring
optional
Example: "+420 777123456"
Responses
200

No description

Base URL:
https://bizkithub.com

Example Request

fetch('https://bizkithub.com/api/v1/support/contact-form?apiKey=YOUR_API_KEY', {
  method: 'POST',
  headers: {
    'Content-Type': 'application/json'
  },
  body: JSON.stringify({
        "message": "Hello, how are you?",
        "subject": "Request from Jan",
        "notice": "Internal notice",
        "sendToEmail": "jan@barasek.com",
        "categorySlug": "offer",
        "customerEmail": "info@brj.app",
        "customerPhone": "+420 777123456"
    })
})

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