- Guides
- API Reference
- Introduction
- Endpoints
- Data Types
- Signing
- 3-D Secure Verification
- Subscription
- Errors
- Webhooks
- Items Information
- Changelog
- Acquiring
- Create a direct paymentPOST
- Create a redirect (iFrame) paymentPOST
- Capture a transactionPOST
- Review a transactionPOST
- Cancel a transactionPOST
- Cancel a subscriptionPOST
- Query a transactionPOST
- Refund a transactionPOST
- Search a refund transactionPOST
- Create a payoutPOST
- Optimise payment methodsPOST
- Update an orderPOST
- Issuing
- Appendix
Delete cardholder
POST
https://sandbox.vcc.top/api/cardholder/delete
Request
Body Params application/json
request_id
string
optional
<= 100 characters
cardholder_id
number
required
company_id
number
required
sign
string
required
Encryption Rule: touppercase(SHA256(company_id + cardholderId + api_key))
All encryption parameters need to remove spaces before encryption.
<= 100 characters
Example
{
"request_id": "",
"cardholderId": "8101",
"companyId": "4101",
"sign": "D91CD7D82E3783DB612A0BAD0F8FC36B0BD32ED0EFB8DE49DE4C87BE844B421B"
}
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://sandbox.vcc.top/api/cardholder/delete' \
--header 'Content-Type: application/json' \
--data-raw '{
"request_id": "",
"cardholderId": "8101",
"companyId": "4101",
"sign": "D91CD7D82E3783DB612A0BAD0F8FC36B0BD32ED0EFB8DE49DE4C87BE844B421B"
}'
Responses
🟢200OK
application/json
Body
code
integer
required
msg
object
required
zh-CN
string
required
en-US
string
required
data
null
required
Example
{
"code": 0,
"msg": {
"zh-CN": "成功",
"en-US": "Success"
},
"data": null
}