For the complete documentation index, see llms.txt. This page is also available as Markdown.

◻️Solver Order Notification API

The platform calls this API after confirming that the user's deposit has been successfully received.

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

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

4. Response Example

5. Response Parameters

Parameter
Type
Description

result

String

Returns success when the notification is processed successfully

Last updated