Batch Import Device
Simlessly
# Batch Import Device
Batch import device to EIM platform.
# POST
https://eim.simlessly.com/api/v1/open/esim/batch/importDevice (opens new window)
# Request Body Structure
Name | Type | MOC | Description | Example |
---|---|---|---|---|
devices | List | M | Device list, size 1-500 | See below |
eid | String | C | EID(EID or IMEI, Required) | 35203000280200000000000000003672 |
imei | String | C | IMEI(EID or IMEI, Required) | 111112111111400 |
group | String | O | device group name | group1 |
organization | String | O | organization name |
# Request Body Example
{
"devices": [
{
"eid": "35203000280200000000000000003672",
"imei": "111112111111400",
"group": "groupName1",
"organization": "organization",
"status": "success",
"message": ""
}
]
}
# Response Body Structure
Name | Type | MOC | Description | Example |
---|---|---|---|---|
batchId | Long | M | Batch ID | 123456789 |
# Response Body Example
{
"status": 200,
"success": true,
"msg": "",
"obj": {
"batchId": 123456789
}
}