Download AC from Operator

# Download AC from Operator

This API is used to download the AC from the operator.

# POST

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

# Request Body Structure

Name Type MOC Description Example
operatorId Long M Operator ID 1
acInfo List< AcInfo> M AC information See below

# AcInfo

Name Type MOC Description Example
eid Long M EID EID is mandatory when download AC from twilio
iccid String O ICCID ICCID is mandatory when download AC from plintron
imei String O IMEI 273203576794093
apn String O APN apn is mandatory when download AC from twilio

# Request Body Example

{
    "operatorId": 1,
    "acInfo": [
        {
            "eid": 81049980000170000000002700000017,
            "iccid": "89860468152080349618",
            "imei": "273203576794093",
            "apn": "apn"
        }
    ]
}

# Response Body Structure

Name Type MOC Description Example
batchId Long M batch task id 1

# Example of Response

{
    "status":200,
    "success": true,
    "msg": "",
    "obj": {
        "batchId": 1
    }
}