Skip to main content
POST
/
wallet
/
api
/
user
/
applyCard
用户自己申请开卡(从用户资产扣款)
curl --request POST \
  --url http://localhost/wallet/api/user/applyCard
{
  "code": 123,
  "msg": "<string>",
  "data": {
    "channel": "UTGL",
    "status": "ACTIVE",
    "cardId": 123,
    "cardNumber": "<string>",
    "cardUUID": "<string>",
    "embossedName": "<string>",
    "expiryMonth": "<string>",
    "expiryYear": "<string>",
    "last4": "<string>",
    "msg": "<string>"
  }
}

Query Parameters

addressId
integer<int64>

地址ID,如果需要邮寄,则该值为必传

agencyCode
string
required

代理商码

appId
string
required

App标识

appUserId
string
required

App用户ID

assetId
integer<int64>

付款资产Id

cardSuffix
string

用户已经拥有的卡号

categoryId
integer<int64>
required

信用卡种类ID

clientCardPhoto
string

用户上传卡片图片的URL地址

embossedName
string
required

浮雕姓名(必须全英文大写),不超过20个字符

needDelivery
boolean

是否需要邮寄,如果为true,则addressId必传

sign
string
required

签名

Response

200 - application/json

OK

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