|
45 | 45 | - the Access Token `sinkCredential` (optionally set by the requester) expiration time has been reached |
46 | 46 | - the API server has to stop sending notification prematurely |
47 | 47 |
|
| 48 | + **Note on combined usage of ``initialEvent`` and ``subscriptionMaxEvents``**: |
| 49 | +
|
| 50 | + If an event is triggered following ``initialEvent`` set to true, |
| 51 | + this event will be counted towards ``subscriptionMaxEvents`` (if provided). |
| 52 | +
|
| 53 | + **Clarification on ``initialEvent`` & ``event-type`` behaviour:** |
| 54 | +
|
| 55 | + Following table illustrate behaviour regarding event triggering depending on **initial** roaming state of the device: |
| 56 | +
|
| 57 | + | subscribed event-type | device roaming status at subscription time | event sent if ``initialEvent`` set to true | |
| 58 | + | ----------------------| ------------- | --------------- | |
| 59 | + | roaming-status | Roaming On | Yes | |
| 60 | + | roaming-status | Roaming Off | Yes | |
| 61 | + | roaming-on | Roaming On | Yes | |
| 62 | + | roaming-on | Roaming Off | No | |
| 63 | + | roaming-off | Roaming On | No | |
| 64 | + | roaming-off | Roaming Off | Yes | |
| 65 | + | roaming-change-country | Roaming Off | No(*) | |
| 66 | + | roaming-change-country | Roaming On | No(*) | |
| 67 | +
|
| 68 | + (*) Use of ``initialEvent`` has no impact on roaming-change-country event-type. |
| 69 | +
|
| 70 | + **Clarification on ``roaming-change-country`` event-type:** |
| 71 | +
|
| 72 | + ``roaming-change-country`` event is sent only when the device stays in roaming situation and change country. |
| 73 | + Suppose a device from Germany & all event types subscribed: |
| 74 | +
|
| 75 | + - Device moves from Germany to France: |
| 76 | + - triggered: roaming-status & roaming-on |
| 77 | + - not triggered: roaming-change-country & roaming-off |
| 78 | + - Device moves from France to Belgium: |
| 79 | + - triggered: roaming-change-country |
| 80 | + - not triggered: roaming-status, roaming-on & roaming-off |
| 81 | + - Device moves from Belgium back to Germany |
| 82 | + - triggered: roaming-status & roaming-off |
| 83 | + - not triggered: roaming-on & roaming-change-country |
| 84 | +
|
| 85 | +
|
48 | 86 | ### Notifications callback |
49 | 87 |
|
50 | 88 | This endpoint describes the event notification received on subscription listener side when the event occurred. |
|
0 commit comments