Query AC List
Simlessly
# Query AC List
This API is used to query the list of ACs.
# POST
https://eim.simlessly.com/api/v1/open/esim/ac/list (opens new window)
# Request Body Structure
Name | Type | MOC | Description | Example |
---|---|---|---|---|
pageNum | Integer | M | Page number | 1 |
pageSize | Integer | M | Number of records per page | 10 |
iccid | String | O | ICCID | 89860468152080349618 |
imei | String | O | IMEI | 273203576794093 |
eid | String | O | EID | 81049980000170000000002700000017 |
# Request Parameters
{
"pageNum":1,
"pageSize":2,
"iccid": "12343389793479374334",
"imei": "",
"eid": ""
}
# Response Body Structure
Parameters | Type | MOC | Description | Example |
---|---|---|---|---|
acGroupName | String | M | AC group name | acGroupName |
ac | String | M | AC | ac |
iccid | String | M | ICCID | 89860468152080349618 |
imei | String | M | IMEI | 273203576794093 |
apn | String | M | APN | apn |
cc | String | O | CC | cc |
operator | String | M | Operator | Twilio |
eid | String | M | EID | 81049980000170000000002700000017 |
downloadAttempt | Integer | M | Download attempt | 1 |
ruleName | String | M | Rule name | ruleName |
boundDevice | Integer | M | Device binding status | 0 Unbound with device, 1 Bound with device |
# Example of Response
{
"status":200,
"success": true,
"msg": "",
"data": {
"total": 1,
"list": [
{
"acGroupName": "acGroupName",
"ac": "ac",
"iccid": "89860468152080349618",
"imei": "273203576794093",
"apn": "apn",
"cc": "cc",
"operator": "Twilio",
"eid": "81049980000170000000002700000017",
"downloadAttempt": 1,
"ruleName": "ruleName",
"boundDevice": 1
}
]
}
}