/api/v1/customer/customer-match-customer
Create many-to-many relation between two customers.
This feature is suitable, for example, for matching clients and trainers, or for obtaining contacts on a dating site or company contact.
post
Tags:customer
Operation ID:
postApiV1CustomerCustomer-match-customer
Query Parameters
Body
managerCuRefNo
stringOwner of relation.
Example: "1cGIHvFoQDGLAbcA"
customerCuRefNo
stringCustomer of relation.
Example: "5CmsaVNgAQqRqoen"
customerEmail
stringExample: "jan@barasek.com"
notice
stringA public note for this connection. The note will be visible to both customers. For example, a trainer can write information about a new client here.
Example: "Customer prefers cardio training. Contact obtained via the website."
Responses
200
No description
Base URL:
https://bizkithub.com
Example Request
fetch('https://bizkithub.com/api/v1/customer/customer-match-customer?apiKey=YOUR_API_KEY', {
method: 'POST',
headers: {
'Content-Type': 'application/json'
},
body: JSON.stringify({
"managerCuRefNo": "1cGIHvFoQDGLAbcA",
"customerCuRefNo": "5CmsaVNgAQqRqoen",
"customerEmail": "jan@barasek.com",
"notice": "Customer prefers cardio training. Contact obtained via the website."
})
})
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