EUDR - Customers - Suppliers
Create connection contact for own or connected supplier
Create a new connection contact for a supplier.
This endpoint allows you to add contact persons to suppliers for relationship management. If the specified target is not currently a supplier, it will be automatically connected as one.
Use Cases:
- Add contact persons to suppliers
- Maintain supplier contact information
- Enable supplier communication
Required permissions: access_public_products, access_public_mng_conn_contacts, and READ on the target
post/public/v2/eudr/customers/suppliers/{supplierId}/connection-contacts
Path parameters
supplierIdinteger required
Supplier target ID for whom new contacts will be created. If the given target is not a supplier, it will be automatically created as one.
Request body
Example request
{
"email": "contact@example.com"
}Response
Connection contact created successfully.
Example response
{
"id": 42,
"email": "contact@example.com"
}