> For the complete documentation index, see [llms.txt](https://docs.ventiapp.mx/ventiapp/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.ventiapp.mx/ventiapp/desarrolladores/api/mensajes.md).

# Mensajes

## PostMessageAnswer

<mark style="color:green;">`POST`</mark> `https://ventiapi.azurewebsites.net/api/Messages/PostMessageAnswer`

Se puede mandar el número de guía por esta API

**Canales Disponibles:**

Mercado Libre

#### Query Parameters

| Name                                      | Type   | Description        |
| ----------------------------------------- | ------ | ------------------ |
| orderId<mark style="color:red;">\*</mark> | String | Número de venta    |
| answer<mark style="color:red;">\*</mark>  | String | Mensaje a escribir |

{% tabs %}
{% tab title="200: OK " %}

```javascript
{
    "clientId": "523937470",
    "status": "success",
    "code": "S01",
    "reason": null,
    "answer": "Tu numero de guia es 5738920",
    "orderId": "2000003738946408"
}
```

{% endtab %}
{% endtabs %}

## **Body**

```json
{
    "orderId": "2000003738946408",
    "answer": "Tu numero de guia es 5738920"
}
```
