Skip to main content
POST
/
wallet
/
transactions
/
crypto
/
reprocess-hash
curl --request POST \
  --url https://api.ripio.com/wallet/transactions/crypto/reprocess-hash/ \
  --header 'Content-Type: application/json' \
  --header 'authorization: <authorization>' \
  --header 'signature: <signature>' \
  --header 'timestamp: <timestamp>' \
  --data '
{
  "txn_hash": "0xabcdef1234567890abcdef1234567890abcdef1234567890abcdef1234567890ab",
  "currency": "BTC",
  "network": "bitcoin"
}
'
"<string>"

Headers

authorization
string
required

The API key as a string.

signature
string
required

See the Generating Signature section for more details.

timestamp
number
required

A timestamp in milliseconds. See the Timestamp Security section for more details.

timstamp-tolerance
number

An additional, non-required parameter, that you can send to specify the number of milliseconds after the timestamp for the request to be valid. See the Timestamp Security section for more details.

Body

application/json
txn_hash
string
required

Blockchain transaction hash to reprocess.

Example:

"0xabcdef1234567890abcdef1234567890abcdef1234567890abcdef1234567890ab"

currency
string
required

ISO 4217 crypto currency code.

Example:

"BTC"

network
string
required

Network code for the transaction (e.g. bitcoin, ethereum, polygon).

Example:

"bitcoin"

Response

Reprocess started successfully. No response body is returned.