In StoreCRM, Shopify Flow can be used to send a line triggered by the expiration of points by Shopify app VIPs.
Examples of measures that can be implemented
- Send out a line notifying that points will expire in 30 days.
Send a line from StoreCRM Fat days before point expiration

Create a Flow in Shopify Flow starting with VIP "Points Expire".

Next, select the StoreCRM action. 3 actions are available for sending StoreCRM LINE: LINE Send StoreCRM Message (send a message defined in StoreCRM via LINE), LINE: Send Flex Message ( LINE: Send Flex Message ( Send Flex Message in LINE)" and "LINE: Send Text message ( Send Text message in LINE)".
In this case, we will use "LINE: Send Flex Message (Send Flex Message on LINE)" to make use of the variable given by the VIP's "Point Expiration" trigger in the LINE message.

Of the three setting items in the "LINE: Send Flex Message" action, the alternative text and the Flex Message content are required fields.
The content of Flex Message must be entered in json format. json format code generated by Flex Message Simulator, for example, can contain variables given by the "Customer points changed" trigger, so that instead of text, the current The json format code generated by Flex Message Simulator or similar can be used to display the current number of points, etc., instead of the text.
{
"type": "bubble", "body": {
"body": {
"type": "box", "layout": "horizontal", "body": { "type": "bubble", "body": {
"layout": "horizontal", { "contents": ["text"]: ["text
"contents": [
{
"type": "text", "text": "{{expiresIn}} days later
"text": "Points that expire after {{expiresIn}} days"
},
{
"type": "text", "text".
"text": "{{point}}"
}
]
}
}
The contents of the Flex Message described here are as above.

It is recommended to save the configured Flow and check the actual operation.
If the line is sent as shown in the image above, it is working fine.