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

tag
string | null

Response

Successful Response

Response for tag update.

onchainTransactionId
string
required
tag
string | null