- 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
Update card limit
POST
https://sandbox.vcc.top/api/card/update
Request
Body Params application/json
request_id
string
optional
<= 100 characters
company_id
number
required
card_id
number
required
authLimitAmount
string
required
<= 12 characters
updateCurrency
string
required
<= 3 characters
sign
string
required
Encryption Rule: touppercase(SHA256(company_id + card_id + auth_limitAmount + api_key))
All encryption parameters need to remove spaces before encryption.
<= 100 characters
Example
{
"request_id": "",
"company_id": "4101",
"card_id": "100029701",
"authLimitAmount": "30",
"updateCurrency": "USD",
"sign": "1CF2F88A602BD594CA067153B74591DA0D95874B9723BDAE3774019326A0EC29"
}
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/card/update' \
--header 'Content-Type: application/json' \
--data-raw '{
"request_id": "",
"company_id": "4101",
"card_id": "100029701",
"authLimitAmount": "30",
"updateCurrency": "USD",
"sign": "1CF2F88A602BD594CA067153B74591DA0D95874B9723BDAE3774019326A0EC29"
}'
Responses
🟢200Success
application/json
Body
code
integer
required
msg
object
required
zh-CN
string
required
en-US
string
required
data
object
required
status
string
required
reqNo
integer
required
errorMsg
null
required
groupId
null
required
Example
{
"code": 0,
"msg": {
"zh-CN": "成功",
"en-US": "Success"
},
"data": {
"status": "1",
"reqNo": 116301,
"errorMsg": null,
"groupId": null
}
}