Skip to main content
PUT
/
clients
/
me
/
integrations
/
yield-xyz
/
transactions
/
{transactionId}
/
submit-hash
Submit a transaction hash
curl --request PUT \
  --url https://api.portalhq.io/api/v3/clients/me/integrations/yield-xyz/transactions/{transactionId}/submit-hash \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "hash": "<string>"
}
'
{
  "data": {
    "rawResponse": {
      "type": "<string>",
      "hash": "<string>",
      "status": "<string>"
    }
  }
}

Authorizations

Authorization
string
header
required

Client API Key or Client Session Token (CST). Pass as a Bearer token in the Authorization header.

Path Parameters

transactionId
string
required

The unique identifier of the yield transaction.

Body

application/json
hash
string
required

The on-chain transaction hash.

Response

Hash submitted successfully

data
object