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

emailstring email required

Email address of the connection contact.

Example request

{
  "email": "contact@example.com"
}

Response

Connection contact created successfully.

idinteger required

Unique identifier of the connection contact.

emailstring email nullable

Email address of the connection contact. May be null if not provided.

Example response

{
  "id": 42,
  "email": "contact@example.com"
}