2025-03-25
  • 2025-03-25
  • 2025-01-20
  • 2022-03-14
Help Center
VCCHUB How-to
2025-03-25
  • 2025-03-25
  • 2025-01-20
  • 2022-03-14
  1. Card
  • Guides
    • Welcome
    • Interface
  • API Reference
    • Introduction
    • Endpoints
    • Data Types
    • Signing
    • 3-D Secure Verification
    • Subscription
    • Errors
    • Webhooks
    • Items Information
    • Changelog
    • Acquiring
      • Create a direct payment
        POST
      • Create a APM payment
        POST
      • Create a redirect (iFrame) payment
        POST
      • Query a transaction
        POST
      • Capture a transaction
        POST
      • Review a transaction
        POST
      • Cancel a transaction
        POST
      • Cancel a subscription
        POST
      • Refund a transaction
        POST
      • Search a refund transaction
        POST
      • Create a payout
        POST
      • Optimise payment methods
        POST
    • Issuing
      • Cardholder
        • Create cardholder
        • Delete cardholder
        • Query cardholder
      • Group
        • Create group
        • Query group details
        • Delete group
        • Group Card Withdrawal
        • Update group status
        • Recharge group
        • Query rule
      • Card
        • Create a card
          POST
        • Query card details
          POST
        • Query card transaction
          POST
        • Cancel a card
          POST
        • Withdraw from a card
          POST
        • Update card status
          POST
        • Recharge card
          POST
        • Update shared card limit
          POST
        • Query for card operation
          POST
        • Query card BIN
          POST
  • Appendix
    • Test Cards
    • Bank Code
    • Country Code
    • Currency Code
    • Payment Methods
  1. Card

Update shared card limit

POST
https://sandbox.vcc.top/api/card/update
Update the limit for a shared card

Request

Body Params application/json

Example
{
    "company_id": "{{companyId}}",
    "card_id": "1952659209543876609",
    "limit_amount": 10,
    "request_id": "ul-0016",
    "sign": "{{sign}}"
}

Request Code 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 '{
    "company_id": "{{companyId}}",
    "card_id": "1952659209543876609",
    "limit_amount": 10,
    "request_id": "ul-0016",
    "sign": "{{sign}}"
}'

Responses

🟢200Success
application/json
Body

Example
{
    "code": "0000",
    "message": "Success",
    "result": {
        "status": "1",
        "limit_amount": 10
    }
}
Previous
Recharge card
Next
Query for card operation