Yes. You can export SIM information for a specific order from the List SIMs in order button on the Orders screen in the User Console. A CSV download is also available from the same screen.
Look up SIM details by Order ID (CLI / API)
If you have the Order ID, you can retrieve the ICCID, IMSI, MSISDN, and (when available) serial number for the SIMs included in that order.
Use either:
Note: Order history and subscriber lists retrieved via the API/CLI are limited to the last 18 months.
Soracom CLI example
Command:
soracom orders list-subscribers --order-id <ORDER_ID>
Example output (some values masked):
$ soracom orders list-subscribers --order-id 20190718xxxxxx_xxxxxxxx
{
"orderedSubscriberList": [
{
"iccid": "89811xxxxxxxxxxxxxxx",
"imsi": "44010xxxxxxxxxx",
"msisdn": "020xxxxxxxx",
"serialNumber": "DNxxxxxxxxxxxxx"
}
]
}
How to find the Order ID
You can find the Order ID on the Orders screen in the User Console.
You can also list orders using:
Soracom CLI example (list orders)
soracom orders list
Example output (some values masked):
$ soracom orders list
{
"orderList": [
{
"currency": "JPY",
"email": "xxxx@xxxx.com",
"orderDateTime": "202003xxxxxxxx",
"orderId": "202003xxxxxxxx_xxxxxxxx",
"orderItemList": [
{
...
}
]
}
]
}