# SIM Card Rule Payloads

It occurs when certain rules related to the SIM have been triggered.   &#x20;

**rule.sim\_card.current\_usage.triggered** – occurs when SUBSCRIPTION SIM Card current usage has been changed (Listing 5.14).

**Listing 5.14 – Example of rule.sim\_card.current\_usage.triggered Payload (JSON)**

<pre><code>{
    "type":        "rule.sim_card.current_usage.triggered",
    "data":        {
        "rule":        {...//Rule Model},
        "sim_card":    {...//Sim Card Model}
<strong>    },
</strong>    "created_at":   {...//Date Time Model}
}
</code></pre>

**rule.sim\_card.status.changed** – occurs when SIM Card status has been changed. SIM Card has been activated for example (Listing 5.15).&#x20;

**Listing 5.15 – Example of rule.sim\_card.status.changed Payload (JSON)**

```
{
    "type":        "rule.sim_card.status.changed",
    "data":        {
        "rule":        {...//Rule Model},
        "sim_card":    {...//Sim Card Model}
    },
    "created_at":   {...//Date Time Model}
}


```

**rule.sim\_card.remaining\_usage.triggered** – occurs when PREPAID SIM Card remaining usage has been changed (Listing 5.16).&#x20;

**Listing 5.16 – Example of rule.sim\_card.remaining\_usage\_triggered Payload (JSON)**

<pre><code>{
    "type":        "rule.sim_card.remaining_usage.triggered",
    "data":        {
        "rule":        {...//Rule Model},
        "sim_card":    {...//Sim Card Model}
<strong>    },
</strong>    "created_at":  {...//Date Time Model}
}
</code></pre>

**rule.sim\_card.imei.changed** – occurs when SIM Card IMEI has been changed (Listing 5.17).&#x20;

**Listing 5.17 – Example of rule.sim\_card.imei.changed Payload (JSON)**

```
{
    "type":        "rule.sim_card.imei.changed",
    "data":        {
        "rule":         {...//Rule Model},
        "sim_card":     {...//Sim Card Model}
    },
    "created_at":   {...//Date Time Model}
}
```

**rule.sim\_card.date.triggered** – occurs when Rule “Date Triggered” has been happened (Listing 5.18).&#x20;

**Listing 5.18 – Example of rule.sim\_card.date.triggered Payload (JSON)**

<pre><code>{
<strong>    "type":       "rule.sim_card.date.triggered",
</strong>    "data":       {
       "rule":        {...//Rule Model},
       "sim_card":    {...//Sim Card Model}
<strong>    },
</strong>    "created_at":  {...//Date Time Model}
}
</code></pre>


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://faq.droam.com/menu/webhooks/webhook-payload-types/rule-payloads/sim-card-rule-payloads.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
