/api/v1/support/contact-form
API endpoint documentation
post
Tags:support
Operation ID:
postApiV1SupportContact-form
Query Parameters
Body
message
stringExample: "Hello, how are you?"
subject
stringExample: "Request from Jan"
notice
stringExample: "Internal notice"
sendToEmail
stringExample: "jan@barasek.com"
categorySlug
stringExample: "offer"
customerEmail
stringExample: "info@brj.app"
customerPhone
stringExample: "+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