Skip to main content
PUT
/
api
/
v1
/
transactions
/
{transaction_id}
/
memo
Set transaction memo
curl --request PUT \
  --url https://api.hevn.finance/api/v1/transactions/{transaction_id}/memo \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "memo": "<string>"
}
'
{
  "onchainTransactionId": "<string>",
  "memo": "<string>"
}

Authorizations

Authorization
string
header
default:Bearer <token>
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Headers

x-api-key
string | null

Path Parameters

transaction_id
string
required

Body

application/json

Request to update a transaction memo (description).

memo
string | null

Response

Successful Response

Response for memo update.

onchainTransactionId
string
required
memo
string | null