> For the complete documentation index, see [llms.txt](https://docs.en.omnibridge.pro/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.en.omnibridge.pro/intent/solver-integration/solver-order-notification-api.md).

# Solver Order Notification API

### 1. API Call

* **HTTP Method:** POST
* **Provider:** Solver

### 2. Request Parameters

| Parameter | Required | Description                                              |
| --------- | -------- | -------------------------------------------------------- |
| intentId  | Yes      | Solver order ID                                          |
| status    | Yes      | Order status (`success`: successful, `timeout`: timeout) |
| fromCoin  | Yes      | Source token/currency                                    |
| toCoin    | Yes      | Target token/currency                                    |

### 3. Request Example

```json
{
    "intentId": "123456",
    "status": "success",
    "fromCoin": "USDT(BASE)",
    "toCoin": "USDT(ETH)"
}
```

### 4. Response Example

```json
{
    "data": {
        "result": "success"
    }
}
```

### 5. Response Parameters

| Parameter | Type   | Description                                                       |
| --------- | ------ | ----------------------------------------------------------------- |
| result    | String | Returns `success` when the notification is processed successfully |
