line / line-bot-sdk-nodejs

LINE Messaging API SDK for Node.js
https://developers.line.biz/en/docs/messaging-api/overview/
Apache License 2.0
961 stars 407 forks source link

Codes are generated by openapi #934

Closed github-actions[bot] closed 2 months ago

github-actions[bot] commented 2 months ago

https://github.com/line/line-openapi/pull/65

In the Messaging API, we've added the following values as conditions for filtering the age range of recipients in the demographic filter objects of narrowcast messages:

Until now, the upper limit was age_50, so it wasn't possible to filter ages over 50 in detail. By specifying the added age ranges, you can now filter recipients more flexibly than before.

For example, the following is a demographic filter object that filters by age 50 and older but less than 60:

{
  "type": "age",
  "gte": "age_50",
  "lt": "age_60"
}

news: https://developers.line.biz/en/news/2024/08/26/age-filter-subdivision/