Profile Lifecycle
These events represent the different status changes an eSIM can undergo after being sold to a consumer. There are a total of 5 possible states in the lifecycle of an eSIM:
DOWNLOADED - The eSIM has been successfully downloaded to the device.
INSTALLED - The eSIM is installed and ready for activation.
ENABLED - The eSIM is active and ready to be used for connectivity.
DISABLED - The eSIM is inactive but still stored on the device.
DELETED - The eSIM has been fully removed from the device.
DOWNLOADED
{
"iccid": "89103000000196XXXXXX",
"event_type": "PROFILE_LIFECYCLE",
"event_timestamp": "2025-06-01T02:01:53.037000Z",
"eid": "89049032007008882600XXXXXXXXXXXX",
"status": "DOWNLOADED"
}INSTALLED
{
"iccid": "89103000000196XXXXXX",
"event_type": "PROFILE_LIFECYCLE",
"event_timestamp": "2025-06-01T02:02:23.049000Z",
"eid": "89049032007008882600XXXXXXXXXXXX",
"status": "INSTALLED"
}ENABLED
{
"iccid": "89103000000196XXXXXX",
"event_type": "PROFILE_LIFECYCLE",
"event_timestamp": "2025-06-01T02:02:33.103000Z",
"eid": "89049032007008882600XXXXXXXXXXXX",
"status": "ENABLED"
}DISABLED
{
"iccid": "89103000000196XXXXXX",
"event_type": "PROFILE_LIFECYCLE",
"event_timestamp": "2025-06-01T02:26:44.248000Z",
"eid": "89049032007008882600XXXXXXXXXXXX",
"status": "DISABLED"
}DELETED
{
"iccid": "89103000000196XXXXXX",
"event_type": "PROFILE_LIFECYCLE",
"event_timestamp": "2025-06-01T02:27:54.280000Z",
"eid": "89049032007008882600XXXXXXXXXXXX",
"status": "DELETED"
}ICCID
It is the eSIM serial number which is a unique parameter for each eSIM.
EVENT_TYPE
It indicates the type of the event that is being received.
EVENT_TIMESTAMP
It indicates the the time_stamp when that event occured
EID
It shows the EID of the customer device upon which the eSIM has been downloaded.
STATUS
It shows the status of the eSIM on the device when that event is generated
Last updated