Skip to main content
POST
/
payment
/
wallet
/
delbankcard
Delete bank card from wallet
curl --request POST \
  --url https://apigw.bienport.com/api/payment/wallet/delbankcard \
  --header 'Authorization: <authorization>' \
  --header 'Content-Type: application/json' \
  --header 'OrganizationId: <organizationid>' \
  --data '
{
  "cardId": 12658,
  "subscriptionId": 12658
}
'
{
  "code": "200",
  "reason": "Success",
  "message": "Payment Success",
  "status": "ok"
}

Headers

Authorization
string
required

Access Token

OrganizationId
string
required

Organization ID

Body

application/json

delBankCardFromWalletRequest

Delete bank card from wallet Api Model

cardId
integer<int64>
required

Bank card id

Example:

12658

subscriptionId
integer<int64>
required

Subscription Id

Example:

12658

Response

The bank card(s) successfully deleted.

Response Model for payment api

code
string
Example:

"200"

reason
string
Example:

"Success"

message
string
Example:

"Payment Success"

status
string
Example:

"ok"