Ceffu OpenAPI Documentation Platform
  • ChangeLog
  • Getting Started
  • System Endpoints
  • Wallet Endpoints
  • Sub-Wallet Endpoints
    • Get Sub-Wallet List (V2)GET
    • Get Sub-Wallet Asset DetailsGET
    • Get Sub-Wallet Asset SummaryGET
    • Get Sub-Wallet Deposit AddressGET
    • Get Deposit History under Sub-WalletGET
    • Get Deposit Address List under Prime Wallet GET
    • Get Sub-Wallet Deposit History By Prime WalletGET
    • Get Transfer History between Sub-Wallet and Prime WalletGET
    • Get Transaction Details of Prime Wallet Internal TransferGET
    • Create Sub-WalletPOST
    • Update Sub-Wallet DetailsPOST
    • Transfer between Sub Wallet and Prime WalletPOST
  • MirrorX Endpoints
  • Webhook
  • Archive
logoPowered by Apifox
  1. Sub-Wallet Endpoints

Get Transaction Details of Prime Wallet Internal Transfer

GET/open-api/v1/subwallet/transfer/detail

This method allows you to get transaction detail of an internal transfer of Prime wallets

  • Either orderViewId or requestId shall be passed in params.

    API Key permission group : Enable Enquiry

Request

Query Params
orderViewId
string 
optional

Order view id of Prime wallet internal transfer

requestId
string 
optional

Client unique identifier of internal transfer order

walletIdStr
string 
required

Wallet id in string format

timestamp
integer 
required

Timestamp in milliseconds

Header Params
open-apikey
string 
required

OpenAPI Key String

signature
string 
required

Signature of the request

Request samples

Responses

The operation succeeded(200)
The operation succeeded
HTTP Code: 200
Content Type : JSONapplication/json
Data Schema
data
optional

response data, maybe null

Any of
orderViewId
string 
Transfer transaction ID
required
direction
integer <int32>
Transfer direction
required

10: prime wallet->sub wallet
20: sub wallet->prime wallet
30: sub wallet-> sub wallet
40: prime wallet->prime wallet

fromWalletId
integer <int64>
From wallet ID
required

From Wallet Id (Only applicable to Prime Wallet)

toWalletId
integer <int64>
To wallet ID
required

To Wallet Id (Only applicable to Prime Wallet)

coinSymbol
string 
Coin symbol
required
amount
string 
Transfer amount
required
status
integer <int32>
Transaction status
required

10: Pending
20: Processing
30: Send success
99: Failed

requestId
string  | null 
Client request identifier
optional

Universal Unique identifier provided by the client side.

createTime
integer <int64>
Transaction create datetime
required
code
string 
required

'000000' indicates success, while any others indicate failure.

message
string 
required

When the code is '000000' (success), it represents the details of the response. Otherwise, it represents the details of the error.

Example
{
  "data": {
    "orderViewId": "22193643464446333255520001",
    "direction": 40,
    "fromWalletIdStr": "1544594690749788161",
    "toWalletIdStr": "1544927343347867650",
    "createTime": 1664446435000,
    "coinSymbol": "USDC",
    "amount": "10.71000000",
    "status": 30,
    "requestId": null
  },
  "code": "000000",
  "message": "Success"
}
Last modified: 8 months ago