# Obtener estado del contacto de un bot

### 4. Obtener estado del contacto del bot

Permite obtener el estado actual de un contacto en relación a un bot.

**Endpoint:** GET /api/client/bot/{numberBot}/contact/{numberContact}/status

**Parámetros:**

* numberBot: Número de teléfono del bot
* numberContact: Número de teléfono del contacto

**Ejemplo de solicitud:**

```json
curl -X 'GET' \\\\
  'http://{enviroment}/api/client/bot/{numberBot}/contact/{numberContact}/statuss' \\\\
  -H 'accept: application/json' \\\\
  -H 'Authorization: Bearer '

```

**Respuesta:**

```json
{
  "numberBot": "5491127166482",
  "numberContact": "5491121570228",
  "paused": false,
  "success": true
}
```

**Respuesta en caso de no existir relación:**

```json
{
  "success": false
}
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://productosai.gitbook.io/productosai-baas/entornos-de-prueba-y-produccion/obtener-estado-del-contacto-de-un-bot.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
