Commit 9488f69
authored
Add forbidPartialDelivery option to the Narrowcast Limit Object (#114)
## Add forbidPartialDelivery option to the Narrowcast Limit Object
We add a new `forbidPartialDelivery` option to the Narrowcast Limit
Object.
When set to true, this option prevents messages from being delivered to
only a subset of the target audience.
If partial delivery occurs, the narrowcast request will succeed but fail
asynchronously.
You can verify whether the message delivery was canceled by checking the
narrowcast message progress.
This property can only be set to true when upToRemainingQuota is also
true.
For more details, see the
https://developers.line.biz/en/news/2025/10/21/narrowcast-message-update/.
### Example:
```json
{
"max": 100,
"upToRemainingQuota": true,
"forbidPartialDelivery": true
}
```1 parent 8025f6c commit 9488f69
1 file changed
+10
-0
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
2837 | 2837 | | |
2838 | 2838 | | |
2839 | 2839 | | |
| 2840 | + | |
| 2841 | + | |
| 2842 | + | |
| 2843 | + | |
| 2844 | + | |
| 2845 | + | |
| 2846 | + | |
| 2847 | + | |
| 2848 | + | |
2840 | 2849 | | |
2841 | 2850 | | |
2842 | 2851 | | |
| |||
2885 | 2894 | | |
2886 | 2895 | | |
2887 | 2896 | | |
| 2897 | + | |
2888 | 2898 | | |
2889 | 2899 | | |
2890 | 2900 | | |
| |||
0 commit comments