For the complete documentation index, see llms.txt. This page is also available as Markdown.

SIM Card Events

SIM Card Events are triggered by certain actions aimed at the SIM Card.

sim_card.assigned_to_end_user – occurs when a blank SIM Card has been assigned to the End User. There are two situations: the end user registers on the platform with a bought SIM Card or the Organization / Company assigns its own SIM card to its end user (Listing 5.11).

Listing 5.11 – Example of sim_card.assigned_to_end_user Payload (JSON)

{
    "type":          "sim_card.assigned_to_end_user",
    "data":          {
        "sim_card":      {...//Sim Card Model}
    },
    "created_at":     {...//Date Time Model}
}

sim_card.first_usage – occurs when the SIM was first used (Listing 5.12).

Listing 5.12 – Example of sim_card.first_usage Payload (JSON)

{
    "type":         "sim_card.first_usage",
    "data":         {
        "sim_card":     {...//Sim Card Model}
    },
    "created_at":   {...//Date Time Model}
}

Last updated

Was this helpful?