跳转到主要内容
GET
/
v1
/
kyt
/
withdrawal
/
{withdrawalId}
/
summary
KYT - 获取提现摘要
curl --request GET \
  --url https://api-dex.chainstream.io/v1/kyt/withdrawal/{withdrawalId}/summary \
  --header 'Authorization: Bearer <token>'
{
  "asset": "BTC",
  "assetId": null,
  "network": "Bitcoin",
  "address": "1EM4e8eu2S2RQrbS8C6aYnunWpkAwQ8GtG",
  "memo": null,
  "attemptIdentifier": "attempt1",
  "assetAmount": 5,
  "externalId": "9855b826-2bad-31f2-8a89-96f164293a83",
  "usdAmount": 1000,
  "updatedAt": "2020-12-09T17:25:40.008307"
}

授权

Authorization
string
header
必填

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

路径参数

withdrawalId
string
必填

提现 ID

示例:

"123e4567-e89b-12d3-a456-426614174000"

响应

200 - application/json
asset
string
必填

资产类型

示例:

"BTC"

assetId
string | null
必填

资产 ID

示例:

null

network
string
必填

区块链网络

示例:

"Bitcoin"

address
string
必填

地址

示例:

"1EM4e8eu2S2RQrbS8C6aYnunWpkAwQ8GtG"

memo
string | null
必填

备注信息

示例:

null

attemptIdentifier
string
必填

尝试标识符

示例:

"attempt1"

assetAmount
number
必填

资产数量

示例:

5

externalId
string
必填

外部 ID(UUID)

示例:

"9855b826-2bad-31f2-8a89-96f164293a83"

usdAmount
number
必填

USD 金额

示例:

1000

updatedAt
string
必填

更新时间戳

示例:

"2020-12-09T17:25:40.008307"