Skip to main content
GET
/
public
/
api
/
v1
/
inboxes
/
{inbox_identifier}
/
contacts
/
{contact_identifier}
Get a contact
curl --request GET \
  --url https://app.chatwoot.com/public/api/v1/inboxes/{inbox_identifier}/contacts/{contact_identifier}
{
  "id": 123,
  "source_id": "<string>",
  "name": "<string>",
  "email": "<string>",
  "pubsub_token": "<string>"
}

Path Parameters

inbox_identifier
string
required

The identifier obtained from API inbox channel

contact_identifier
string
required

The source id of contact obtained on contact create

Response

Success

id
integer

Id of the contact

source_id
string

The session identifier of the contact

name
string

Name of the contact

email
string

Email of the contact

pubsub_token
string

The token to be used to connect to chatwoot websocket

I