Confirm Crypto Sent

Manually confirm that crypto has been sent for an off-ramp transaction.

Manually confirms that a user has sent crypto for an off-ramp transaction. Use this when the user sends crypto from an external wallet and you need to provide the transaction hash.

Endpoint

POST /v1/offramp/crypto-sent

Authentication

Header
Value

x-api-key

Your API key

Request body

Field
Type
Required
Description

reference

string

Yes

Transaction reference (UUID)

settledCryptoAmount

number

Yes

Exact crypto amount that was sent

transactionHash

string

Yes

Blockchain transaction hash as proof

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..."
  }'

Example response

circle-exclamation

Last updated