Confirm Crypto Sent
Manually confirm that crypto has been sent for an off-ramp transaction.
Endpoint
POST /v1/offramp/crypto-sentAuthentication
Header
Value
Request body
Field
Type
Required
Description
Example request
curl -X POST https://ramp-api.ivorypay.io/api/v1/offramp/crypto-sent \
-H "x-api-key: your_api_key" \
-H "Content-Type: application/json" \
-d '{
"reference": "660e8400-e29b-41d4-a716-446655440001",
"settledCryptoAmount": 62.5,
"transactionHash": "0xdef456789abc..."
}'const response = await fetch("https://ramp-api.ivorypay.io/api/v1/offramp/crypto-sent", {
method: "POST",
headers: {
"x-api-key": "your_api_key",
"Content-Type": "application/json",
},
body: JSON.stringify({
reference: "660e8400-e29b-41d4-a716-446655440001",
settledCryptoAmount: 62.5,
transactionHash: "0xdef456789abc...",
}),
});
const data = await response.json();
console.log(data);Example response
Last updated