Suppliers - Connection Contacts

Get a connection contact

Overview

Retrieve a connection contact by its unique Prewave identifier.

Identification

The {contactId} is a unique numerical identifier of the connection contact.

Getting contactId

  • From the list of contacts returned by GET /public/v2/suppliers/connection-contacts.
  • From the response body or Location header when creating a contact via POST /public/v2/suppliers/connection-contacts.

Required Permission

access_public_suppliers and access_public_conn_contacts

get/public/v2/suppliers/connection-contacts/{contactId}

Path parameters

contactIdinteger required

Unique identifier of the connection contact. You can obtain this ID from the list endpoint (GET) or from the creation response (POST).

Response

Successfully retrieved connection contact

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"
}