Skip to main content
POST
/
wallet
/
api
/
card
/
balance
/
transfer
卡与卡之间转账
curl --request POST \
  --url http://localhost/wallet/api/card/balance/transfer
{
  "code": 123,
  "msg": "<string>",
  "data": {
    "agencyCode": "<string>",
    "amount": 123,
    "appId": "<string>",
    "channelCardTransactionId": "<string>",
    "currency": "<string>",
    "entryType": "<string>",
    "fromAppUserEmail": "<string>",
    "fromAppUserId": "<string>",
    "fromCardNumber": "<string>",
    "fromEmbossedName": "<string>",
    "intent": "<string>",
    "postedAt": "2023-11-07T05:31:56Z",
    "status": "CREATED",
    "toAppUserEmail": "<string>",
    "toAppUserId": "<string>",
    "toCardNumber": "<string>",
    "toEmbossedName": "<string>"
  }
}

Query Parameters

agencyCode
string
required

代理商码

amount
number
required

转账金额(不小于2)

appId
string
required

App标识

fromAppUserEmail
string
required

转账方App用户email

fromAppUserId
string
required

转账方App用户ID

fromCardNumber
string
required

转账方卡号

sign
string
required

签名

timestamp
integer<int64>
required

当前毫秒时间戳(不超过1分钟)

toAppUserEmail
string
required

接收方App用户email

toCardNumber
string
required

接收方卡号

Response

200 - application/json

OK

code
integer<int32>
required
msg
string
required
data
ApiCardBalanceTransferDTO · object