Ingestion API
Ingestion API
1. Initiating a Transaction
POST /uxlink/account/v1/transactions
POST /uxlink/account/v1/transactionsParameter
Type
Required
Description
executeData: {
to: "0x.....", // Address of the business contract to be called
data: "...", // Encoded string containing the function name to be executed in the contract and the arguments passed to this function. Method for creating executeData will be provided below.
},{
"success": true,
"msg": "ok",
"code": 200,
"data": {
"orderId": "1233", // ID of this transaction, which can be used to query the transaction result.
}
}2. Querying Transaction Result
POST /uxlink/account/v1/transactions/query
POST /uxlink/account/v1/transactions/queryParameter
Type
Required
Description
3. Querying Account Balance
POST /uxlink/account/v1/balance
POST /uxlink/account/v1/balanceParameter
Type
Required
Description
Last updated