466169815b78
Find supplier connection contacts by identifier
Overview
Retrieve all connection contacts for a supplier identified by any of its identifiers (supplierId, customerId, ownId, or prewaveId).
Connection contacts are contact persons associated with suppliers that can be used for communication and relationship management. This endpoint returns contacts that are accessible to your organization.
Search Behavior
- Provide at least one identifier parameter.
- The identifiers must resolve to exactly one supplier.
- If multiple suppliers are found, a 400 Bad Request is returned.
Related Operations
- Create Contact: POST /public/v2/suppliers/connection-contacts
- Delete Contact: DELETE /public/v2/suppliers/connection-contacts/{contactId}
- Find Suppliers: GET /public/v2/suppliers/sites/find-by-identifier
Required Permission
access_public_suppliers and access_public_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.
Response
Successfully retrieved connection contacts
Example response
[
{
"id": 42,
"email": "contact@example.com"
}
]