Bootstrap List

# BootStrap List

The BootStrap List API is used to query the list of BootStrap information.

# POST

https://eim.simlessly.com/api/v1/open/esim/bootStrap/list (opens new window)

# Request Body Structure

Name Type MOC Description Example
eid String O EID 81049980000170000000002700000017
imei String O IMEI 273203576794093
iccid String O ICCID 89860468152080349618

# Request Body Example

{
    "eid": "81049980000170000000002700000017",
    "imei": "273203576794093",
    "iccid": "89860468152080349618"
}

# Response Body Structure

Name Type MOC Description Example
seedCardInfoList List< SeedCardInfo> M Seed Card Information See below

# SeedCardInfo

Name Type MOC Description Example
eid String M Embedded SIM (eUICC) ID 89001000000000000000000000000000
imei String O IMEI 111112111111400
iccid String O ICCID 89860468152080349618
status Integer M 0:unknown;1:enable;2:disable; 1

# Example of Response

{
    "status":200,
    "success": true,
    "msg": "",
    "seedCardInfoList": [
        {
            "eid": "89001000000000000000000000000000",
            "imei": "111112111111400",
            "iccid": "89860468152080349618",
            "status": 1
        }
    ]
}