466169815b78
Create connection contact for a supplier by identifier
Overview
Create a new connection contact for a supplier identified by any of its identifiers (supplierId, customerId, ownId, or prewaveId).
This endpoint allows you to add contact persons to suppliers for relationship management. If your organization is not yet connected to the identified target, it will be automatically connected as a supplier.
Auto-Connection Logic
- If the identified target is not yet connected to your organization, an edge of type 'Supplier' will be created automatically.
- This requires the additional internal permission access_public_mng_customer_conn.
Related Operations
- List Contacts: GET /public/v2/suppliers/connection-contacts
- Delete Contact: DELETE /public/v2/suppliers/connection-contacts/{contactId}
Required Permission
access_public_suppliers and access_public_mng_conn_contacts
Query parameters
Supplier ID to search for. Can be combined with customerId, ownId, and/or prewaveId.
Customer ID to search for. Can be combined with supplierId, ownId, and/or prewaveId.
Own site ID to search for. Can be combined with supplierId, customerId, and/or prewaveId.
Prewave ID to search for. Can be combined with supplierId, customerId, and/or ownId.
Optional source system to filter by. If not provided, matches IDs with any source or without a source. Applies to all provided ID parameters.
Request body
Example request
{
"email": "contact@example.com"
}Response
Connection contact created successfully
Example response
{
"id": 42,
"email": "contact@example.com"
}