Saltar al contenido principal
GET
/
{slug}
/
contacts
/
{uuid}
Obtener contacto por UUID
curl --request GET \
  --url https://app.1to1.ai/api/v1/public/{slug}/contacts/{uuid} \
  --header 'Authorization: Bearer <token>'
{
  "uuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "first_name": "<string>",
  "middle_name": "<string>",
  "last_name": "<string>",
  "second_last_name": "<string>",
  "full_name": "Mariana López",
  "whatsapp_id": "525511223344",
  "acquisition_source": "whatsapp",
  "is_tester": false,
  "created_at": "2023-11-07T05:31:56Z",
  "updated_at": "2023-11-07T05:31:56Z"
}

Documentation Index

Fetch the complete documentation index at: https://docs.1to1ai.com/llms.txt

Use this file to discover all available pages before exploring further.

Autorizaciones

Authorization
string
header
requerido

API token emitido desde Settings → API Token del dashboard 1TO1 AI. Enviar en header Authorization: Bearer sk_1to1_...

Parámetros de ruta

slug
string
requerido

Slug del business, case-insensitive. Debe coincidir con el business del token.

Ejemplo:

"acme"

uuid
string<uuid>
requerido

UUID del contacto

Respuesta

OK

uuid
string<uuid>
requerido
first_name
string | null
requerido
middle_name
string | null
requerido
last_name
string | null
requerido
second_last_name
string | null
requerido
full_name
string | null
requerido
Ejemplo:

"Mariana López"

whatsapp_id
string | null
requerido
Ejemplo:

"525511223344"

acquisition_source
string
requerido
Ejemplo:

"whatsapp"

is_tester
boolean
requerido

Contacto creado desde el módulo tester del dashboard (datos ficticios). El listado devuelve reales y tester mezclados; filtrar por este campo si el cliente solo necesita uno de los dos. Para solo-tester existe /tester/contacts.

Ejemplo:

false

created_at
string<date-time>
requerido
updated_at
string<date-time>
requerido