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. Group
  • 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
          POST
        • Query group details
          POST
        • Delete group
          POST
        • Group Card Withdrawal
          POST
        • Update group status
          POST
        • Recharge group
          POST
        • Query rule
          POST
      • Card
        • Create a card
        • Query card details
        • Query card transaction
        • Cancel a card
        • Withdraw from a card
        • Update card status
        • Recharge card
        • Update shared card limit
        • Query for card operation
        • Query card BIN
  • Appendix
    • Test Cards
    • Bank Code
    • Country Code
    • Currency Code
    • Payment Methods
  1. Group

Delete group

POST
https://sandbox.vcc.top/api/group/delete
Delete an existing group

Request

Body Params application/json

Example
{
    "company_id": "{{companyId}}",
    "group_id": "1952560148761411584",
    "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/group/delete' \
--header 'Content-Type: application/json' \
--data-raw '{
    "company_id": "{{companyId}}",
    "group_id": "1952560148761411584",
    "sign": "{{sign}}"
}'

Responses

🟢200OK
application/json
Body

Example
{
    "code": "0000",
    "message": "Success",
    "result": {
        "status": "1",
        "order_id": "1952629319507509249",
        "deleted_time": "2025-08-05T07:14:43.137+00:00",
        "fee": 0.51
    }
}
Previous
Query group details
Next
Group Card Withdrawal