API reference Development guidelines Quickstart Guides - Send messages
- Character counting in a text
- Get user IDs
- Stickers
- LINE emoji
- Use audiences
- Use quick replies
- Get statistics of sent messages
- Use LINE features with the LINE URL scheme
- Use beacons with LINE
- Gain friends of your LINE Official Account
- User account linking
- Customize icon and display name
- Display a loading animation
- Use membership features
- Create coupons and send them to users
- Get quote tokens
- Retrying a failed API request
- Stop using your LINE Official Account
- Stop using the Messaging API
- Tutorial - Make a reply bot
Webhooks Rich menus LINE Bot Designer Flex Message Concepts Reference Resources
API reference Development guidelines Quickstart Guides - Send messages
- Character counting in a text
- Get user IDs
- Stickers
- LINE emoji
- Use audiences
- Use quick replies
- Get statistics of sent messages
- Use LINE features with the LINE URL scheme
- Use beacons with LINE
- Gain friends of your LINE Official Account
- User account linking
- Customize icon and display name
- Display a loading animation
- Use membership features
- Create coupons and send them to users
- Get quote tokens
- Retrying a failed API request
- Stop using your LINE Official Account
- Stop using the Messaging API
- Tutorial - Make a reply bot
Webhooks Rich menus LINE Bot Designer Flex Message Concepts Reference Resources
# Create coupons and send them to users
You can create coupons using the Messaging API and send them to users as messages from your LINE Official Account.
# Steps to send coupons using the Messaging API
Using the Messaging API, you can send coupons to users in two steps:
In addition to the Messaging API, you can also create and send coupons using LINE Official Account Manager (opens new window). For more information, see Coupons (opens new window) (only available in Japanese) in LINE for Business.
# Create a coupon
First, create a coupon using the Create a coupon endpoint.
curl -v -X POST https://api.line.me/v2/bot/coupon \
-H 'Authorization: Bearer {channel access token}' \
-H 'Content-Type: application/json' \
-d \
'
{
"title": "Friends-only coupon",
"description": "- To use this coupon, please show this screen to the staff.\n- Used coupons cannot be used again. If you accidentally mark it as \"used\", it will also become unavailable.\n- This coupon may be changed or terminated without notice regardless of the validity period.",
"reward": {
"type": "discount",
"priceInfo": {
"type": "fixed",
"fixedAmount": 100
}
},
"acquisitionCondition": {
"type": "normal"
},
"startTimestamp": 0,
"endTimestamp": 1924959599,
"imageUrl": "https://developers.line.biz/media/messaging-api/coupon/sample-coupon-image-100-yen-off.jpg",
"timezone": "ASIA_TOKYO",
"visibility": "UNLISTED",
"maxUseCountPerTicket": 1
}'
When you create a coupon, the coupon ID will be returned in the response.
{
"couponId": "01JYNW8JMQVFBNWF1APF8Z3FS7"
}
When creating a coupon, you can set acquisition conditions such as "only users who won the lottery can acquire it" by setting acquisitionCondition.type
to lottery
in the request body. You can also specify the coupon's benefits using the reward object (reward
), such as "50% discount" or "100 yen cashback".
For more information, see Create a coupon in the Messaging API reference.
Once you have created a coupon, proceed to the Send a coupon step.
# You can't edit coupons you have created
Once a coupon has been created, it can't be modified. To change the content of the coupon, you must first discontinue a coupon and then create a new one.
When creating coupons using the LINE Official Account Manager, you can save them as drafts. However, you can't put coupons in a "draft" state when creating them using the Messaging API.
# Send a coupon
After creating a coupon and receiving the coupon ID, specify that coupon ID in a coupon message and send it. If you don't know the coupon ID, you can get the coupon list to check it.
curl -v -X POST https://api.line.me/v2/bot/message/broadcast \
-H 'Authorization: Bearer {channel access token}' \
-H 'Content-Type: application/json' \
-d '
{
"messages": [
{
"type": "coupon",
"couponId": "01JYNW8JMQVFBNWF1APF8Z3FS7"
}
]
}'
Coupon messages can be sent as any of the following types of messages. You can also send coupons created using the Messaging API as messages in LINE Official Account Manager.
Users can open and get the delivered coupon and use it within the validity period.
# Discontinue a coupon
Coupons automatically expire after the validity period specified when they were created, but you can also manually discontinue them before then using the Discontinue a coupon endpoint.
curl -v -X PUT https://api.line.me/v2/bot/coupon/01JYNW8JMQVFBNWF1APF8Z3FS7/close \
-H 'Authorization: Bearer {channel access token}' \
-H 'Content-Type: application/json'
Once a coupon is discontinued, users who have already received it as a message will no longer be able to get it, and users who have already obtained it will no longer be able to use it.
Discontinued coupons can't be reactivated.
For more information, see Discontinue a coupon in the Messaging API reference.
# Check the list of created coupons
You can use the Get a list of coupons endpoint to check the coupon ID and title of the coupons you've created.
curl -v -X GET https://api.line.me/v2/bot/coupon \
-H 'Authorization: Bearer {channel access token}'
This coupon list includes coupons created with both the Messaging API and LINE Official Account Manager (opens new window). You can view the same list in LINE Official Account Manager.
{
"items": [
{
"couponId": "01JZMWQ9HMDW9ENJP4C167CXP8",
"title": "Year-end and New Year coupon"
},
{
"couponId": "01JZA9NPPFDJ3RFG8NA9DJ0NQT",
"title": "Friends-only coupon"
}
]
}
You can also use the query parameter status
to retrieve only valid coupons or only expired coupons. For more information, see Get a list of coupons in the Messaging API reference.
# Get details of a coupon
You can get the details of a specific coupon using the Get details of a coupon endpoint.
curl -v -X GET https://api.line.me/v2/bot/coupon/01JYNW8JMQVFBNWF1APF8Z3FS7 \
-H 'Authorization: Bearer {channel access token}'
You can retrieve details not only for coupons created using the Messaging API, but also for coupons created using LINE Official Account Manager.
{
"couponId": "01K0B456W5Y6SBD3YH74YM6QE6",
"title": "Friends-only coupon",
"description": "- To redeem your coupon, present this screen at checkout.\n- Redeemable once only, even if previously redeemed only unintentionally by the customer.\n- The validity period of this coupon may change or it may be canceled without notice.",
"acquisitionCondition": {
"type": "lottery",
"lotteryProbability": 50,
"maxAcquireCount": -1
},
"startTimestamp": 1752678000,
"endTimestamp": 1924959540,
"timezone": "ASIA_TOKYO",
"couponCode": "COUPONCODE123456",
"maxUseCountPerTicket": 1,
"maxTicketPerUser": 1,
"visibility": "UNLISTED",
"reward": {
"type": "discount",
"priceInfo": {
"type": "fixed",
"fixedAmount": 100,
"currency": "JPY"
}
},
"imageUrl": "https://oa-coupon.line-scdn-dev.net/0h9gbUqRVkZkhfLHhXMLYZHwdyaCosWGBAPFR7cD5tZidsTnofYDVfezt-ZAR3YER9OzRfK35XZwR6TH5uYDF2TnJ-cBNyfURpPRl2RSFSXQc0TiJhYCFiXiZ8XXk0",
"usageCondition": "Usable for payments of 1,000 yen or more",
"status": "RUNNING",
"createdTimestamp": 1752720120
}
For more information, see Get details of a coupon in the Messaging API reference.
# Check the number of views and uses of sent coupons
You can check the number of times sent coupons were viewed and used in LINE Official Account Manager (opens new window). For more information, see Insight - Coupons (opens new window) (only available in Japanese) in LINE for Business.
# Coupon image display size
Coupon images can be displayed by specifying the image URL in imageUrl
when creating the coupon. If you specify a square image, the aspect ratio will be 1.51:1 (width:height) in the chat screen, so the top and bottom of the image will be partially cut off.
You can use the coupon images provided from Free template image collection (opens new window) (only available in Japanese) in LINE Marketing Campus or the templates available at LINE Creative Lab (opens new window) (only available in Japanese).
