Skip to main content

Get contact

This endpoint will let you pull an existing contact from your 2Chat account using its UUID. You can get the UUID of the contact using the List Contacts endpoint, or the Search Endpoint.

Invocation

Make a GET request to https://api.p.2chat.io/open/contacts/<contact-uuid>, where:

<contact-uuid> is the UUID of the contact you would like to update. E.g.: CON58147f7c-3756-4ca1-893c-c3360342b424.

Invocation

curl --location --request GET 'https://api.p.2chat.io/open/contacts/CON58147f7c-3756-4ca1-893c-c3360342b424' \
--header 'Content-Type: application/json' \
--header 'X-User-API-Key: your_api_key_here'

Response

{
"success": true,
"contact": {
"uuid": "CON58147f7c-3756-4ca1-893c-c3360342b424",
"first_name": "Updated name",
"last_name": "Updated last name",
"channel_uuid": "WPN66037eca-9ad1-4c96-9eff-526a90a48c77",
"profile_pic_url": null,
"last_updated": "2025-12-03T00:29:08Z"
}
}