/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
apiKeystring
required

Your BizKitHub API key (passed as GET parameter)

Body
managerCuRefNostring
required

Owner of relation.

Example: "1cGIHvFoQDGLAbcA"
customerCuRefNostring
optional

Customer of relation.

Example: "5CmsaVNgAQqRqoen"
customerEmailstring
optional
Example: "jan@barasek.com"
noticestring
optional

A 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