Linksfield Developer
OverviewCube APIsTopup APIs
Old version
OverviewCube APIsTopup APIs
Old version
  1. Bundle-groups
  • Mall Global Specification
  • Mall Business Flow
  • Mall API Signature Code Examples
  • APP Integration with Stripe SDK — Example Notes
  • Vshop
    • Card Login Verification
      POST
    • Get Available Data Plan Product List
      POST
    • Create User Order
      POST
    • Query Active and Pending Orders
      POST
    • Get Active Auto-Renewal
      POST
    • Cancel Auto-Renewal
      POST
    • Create User Order (Third-Party Payment)
      POST
  • Payment
    • Get Stripe Single Payment Authorization
      POST
    • Get Stripe Subscription Payment Authorization
      POST
    • Create Stripe Subscription / Auto-Renewal
      POST
    • Query Payment Result
      POST
    • Confirm Payment Result
      POST
  • Notification
    • Recharge Success Message Push
      POST
  • Bundle-groups
    • Add SIM Cards to a Specified Group
      POST
    • Remove SIM Cards from a Specified Group
      DELETE
    • Query SIM Card Numbers in a Specified Group
      GET
    • Query All Groups and Basic Data Plan Information
      GET
    • Retrieve Asynchronous Operation Result
      GET
  • Order
    • Query Order Details
      GET
  1. Bundle-groups

Query SIM Card Numbers in a Specified Group

Demo UAT
http://127.0.0.1
Demo UAT
http://127.0.0.1
GET
/mall/bundle-groups/{group_id}/sims

Applicable Scenarios#

Query the SIM card numbers (ICCIDs) contained within a specified SIM-plan group (identified by group_id).

Prerequisites#

1.
The request method must be GET.
2.
All non-null parameters in the query string must be serialized as a JSON string with keys sorted in lexicographic order, to be used as the signature input.
3.
The signature content (signContent) must be encrypted using the MD5 algorithm (default: 32-character lowercase alphanumeric string).
4.
group_id must be a valid and existing SIM-plan group identifier.
5.
The customer associated with the group ID must match the customer identity of the current API request.

Notes#

1.
This is a synchronous interface — the complete query result is returned immediately upon request.
2.
If sim_id is not provided, the full list of ICCIDs in the group will be returned.
3.
The returned SIM card count is based on per-operation counting — each add operation is counted individually without deduplication. Note that duplicate additions may cause the count to exceed expected limits.

Business Rules#

1.
Only groups and their associated SIM cards that the current customer has permission to access will be returned.

Request

Path Params

Query Params

Header Params

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 'http://127.0.0.1/mall/bundle-groups//sims?sim_ids=&version=&partnerCode=&sign=' \
--header 'Accept-Language: zh-CN' \
--header 'Content-Type: application/json'

Responses

🟢200
application/json
Bodyapplication/json

Example
{
    "data": {
        "sim_ids": []
    },
    "operateCode": "S",
    "message": "success"
}
Modified at 2026-06-25 03:48:33
Previous
Remove SIM Cards from a Specified Group
Next
Query All Groups and Basic Data Plan Information
Built with