> For the complete documentation index, see [llms.txt](https://docs.aquanow.io/cams/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.aquanow.io/cams/webhooks/execution.md).

# Execution

<mark style="color:green;">`POST`</mark>&#x20;

Notify execution status

**Body**

```json
{
  "messageId": "123e4567-e89b-12d3-a456-426614174000",
  "messageType": "TRADE_EXECUTED",
  "messageTime": "2025-03-04T16:11:06.951Z",
  "message": {
    "executionId": "123e4567-e89b-12d3-a456-426614174000",
    "orderId": "123e4567-e89b-12d3-a456-426614174000",
    "accountId": "123e4567-e89b-12d3-a456-426614174000",
    "executedAt": "2025-03-04T16:11:06.951Z",
    "pair": "BTC-USD",
    "side": "BUY",
    "deliverCurrency": "BTC",
    "deliverQuantity": "1.00",
    "receiveCurrency": "USD",
    "receiveQuantity": "52100.00",
    "price": "52100.00",
    "baseQuantity": "0.0016",
    "quoteQuantity": "10.74",
    "clientFeeRate": "10",
    "providerFeeRate": "10",
    "clientFeeQuantity": "52.10",
    "providerFeeQuantity": "52.10",
    "feeCurrency": "USD",
    "executionStatus": "TRADE_EXECUTED",
    "tradeDate": "2025-03-04",
    "valueDate": "2025-03-04",
    "confirmedAt": "2025-03-04T16:11:06.951Z",
    "clientReference": "text",
    "tradeTaxRate": "5",
    "clientTaxQuantity": "2.61",
    "providerTaxQuantity": "2.61"
  }
}
```

### **Trade Confirmation Ready**

<mark style="color:green;">`POST`</mark>&#x20;

Notifies that a trade confirmation document has been generated for an executed order and is available at the given file path.

**Body**

```json
{
  "messageId": "f5de9b75-3723-4e3c-bb7a-0a3d75889d89",
  "messageType": "TRADE_CONFIRMATION_READY",
  "messageTime": "2026-05-15T18:32:37.297Z",
  "message": {
    "executionId": "44dfa8fa-c6a1-44e8-b24a-e9f8b9f18f82",
    "orderId":"6e4f59c6-a50a-4117-befc-6bc57d5da84c",
    "customerId":"d1601351-e7a8-57e5-9ffb-b16e305cf0ef",
    "accountId": "478f4793-3ea7-446f-82ee-bfc431c77eb8",
    "filePath":	"trade-confirmations/trade_confirmation_44dfa8fa-c6a1-44e8-b24a-e9f8b9f18f82.pdf",
    "generatedAt": "2026-05-15T18:32:37.297Z"
  }
}
```
