Pular para o conteúdo principal
GET
/
contacts
/
{id}
Get contact
curl --request GET \
  --url https://app.dilli.studio/api/v1/contacts/{id} \
  --header 'X-Api-Key: <api-key>'
{
  "id": "<string>",
  "first_name": "<string>",
  "last_name": "<string>",
  "email": "jsmith@example.com",
  "notes": "<string>",
  "properties": {},
  "created_at": "2023-11-07T05:31:56Z",
  "updated_at": "2023-11-07T05:31:56Z"
}
Use o Playground da API abaixo para enviar esta requisição com sua X-Api-Key. A URL base e os cabeçalhos são preenchidos automaticamente; atualize quaisquer campos de caminho, consulta ou corpo e clique em Enviar.

Autorizações

X-Api-Key
string
header
obrigatório

Parâmetros de caminho

id
string
obrigatório

Resposta

OK

id
string

ULID

first_name
string
last_name
string | null
email
string<email>
notes
string | null
properties
object

Key/value map of property definition keys to their values

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