# Validate Confirmations

A sender can provide the confirmation numbers from a transaction to the recipient, who then verifies for a specific TXO ID (note that TXO ID is specific to the TXO, and is consistent across wallets. Therefore the sender and receiver will have the same TXO ID for the same TXO which was minted by the sender, and received by the receiver).

## Parameters

| Param          | Description                                                      |                                                                                   |
| -------------- | ---------------------------------------------------------------- | --------------------------------------------------------------------------------- |
| `account_id`   | The account on which to perform this action.                     | Account must exist in the wallet.                                                 |
| `txo_id`       | The ID of the TXO for which to validate the confirmation number. | TXO must be a received TXO.                                                       |
| `confirmation` | The confirmation number to validate.                             | The confirmation number should be delivered by the sender of the Txo in question. |

## Example

{% tabs %}
{% tab title="Request Body" %}

```
{
  "method": "validate_confirmation",
  "params": {
    "account_id": "4b4fd11738c03bf5179781aeb27d725002fb67d8a99992920d3654ac00ee1a2c",
    "txo_id": "bbee8b70e80837fc3e10bde47f63de41768ee036263907325ef9a8d45d851f15",
    "confirmation": "0a2005ba1d9d871c7fb0d5ba7df17391a1e14aad1b4aa2319c997538f8e338a670bb"
  },
  "jsonrpc": "2.0",
  "id": 1
}
```

{% endtab %}

{% tab title="Response" %}

```
{
  "method": "validate_confirmation",
  "result": {
    "validated": true
  },
  "error": null,
  "jsonrpc": "2.0",
  "id": 1,
}
```

{% endtab %}
{% endtabs %}


---

# 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://mobilecoin.gitbook.io/full-service-api/api-endpoints/v1/transaction/transaction-confirmation/validate_confirmation.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.
