Rescue Funds
POST/payments/:paymentId/rescueDescription
Recover excess deposits or wrong tokens from a direct payment contract. Transfers the full token balance to the specified receiver. Requires a signed request.
💡
Rescue is typically used when a customer accidentally overpays or sends the wrong stablecoin.
Headers
| Header | Description | Required |
|---|---|---|
| Authorization | Bearer token with your API key | yes |
| Content-Type | application/json | yes |
| X-Signature | Signature from signRescue(), signed with your signing key. | yes |
Path Parameters
| Name | Type | Description | Required |
|---|---|---|---|
| paymentId | string | The unique identifier of the payment to rescue funds from. | yes |
Request Body
| Name | Type | Description | Required |
|---|---|---|---|
| token | string | Token contract address to rescue. | yes |
| receiver | string | Wallet address to send the rescued tokens to. | yes |
| deadline | integer | Unix timestamp after which the signature expires. Use the value returned by signRescue(). | yes |
Example Request
import { signRescue } from '@exodus/checkout-signer'
const paymentId = 'pay_0987654321fedcba'
const onChainId = '0x1a2b3c4d5e...' // from payment.on_chain_id
const token = '0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48' // USDC on Ethereum
const receiver = '0x742d35Cc6634C0532925a3b844Bc9e7595f8fE21'
const { signature, deadline } = signRescue(
onChainId,
token,
receiver,
process.env.SIGNING_PRIVATE_KEY,
)
const response = await fetch(
`https://checkout.exodus.com/payments/${paymentId}/rescue`,
{
method: 'POST',
headers: {
Authorization: 'Bearer sk_live_xxxxxxxxxxxxxxxx',
'Content-Type': 'application/json',
'X-Signature': signature,
},
body: JSON.stringify({ token, receiver, deadline }),
},
)Response
SUCCESSFUL RESCUE
{
"id": "pay_0987654321fedcba",
"on_chain_id": "0x1a2b3c4d5e6f7a8b9c0d1e2f3a4b5c6d7e8f9a0b1c2d3e4f5a6b7c8d9e0f1a2b",
"token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48",
"receiver": "0x742d35Cc6634C0532925a3b844Bc9e7595f8fE21",
"tx_hash": "0x8a9c67b2d1e3f4a5b6c7d8e9f0a1b2c3d4e5f6a7b8c9d0e1f2a3b4c5d6e7f8a9"
}Error Responses
NOTHING TO RESCUE
{
"error": {
"type": "invalid_request",
"message": "No token balance available to rescue"
}
}INVALID SIGNATURE
{
"error": {
"type": "authentication_error",
"message": "Invalid signature"
}
}