/api/v1/support/contact-form
API endpoint documentation
post
Tags:support
Operation ID:
postApiV1SupportContact-formQuery Parameters
Body
messagestringExample: "Hello, how are you?"subjectstringExample: "Request from Jan"noticestringExample: "Internal notice"sendToEmailstringExample: "jan@barasek.com"categorySlugstringExample: "offer"customerEmailstringExample: "info@brj.app"customerPhonestringExample: "+420 777123456"customerFirstNamestringExample: "Jan"customerLastNamestringExample: "Barášek"Responses
200
No description
Base URL:
https://bizkithub.comExample 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",
"customerFirstName": "Jan",
"customerLastName": "Barášek"
})
})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: November 14, 2025