LINE Official Notifications
Create LON Message Request
POST
/
line-official-notification
/
push
curl --request POST \
--url https://api.abbie.biz/line-official-notification/push \
--header 'Authorization: <authorization>' \
--header 'Content-Type: application/json' \
--header 'x-abbie-signature: <x-abbie-signature>' \
--data '{
"template_id": "<string>",
"description": "<string>",
"phone_numbers": [
{
"target": "<string>",
"ref": "<string>"
}
],
"variables": {}
}'{ "status": "Create log success" }
Headers
Authorization
string
requiredChannel access token (Bearer Token)
x-abbie-signature
string
requiredSignature of the request for safely verifying the request source. See Generate signature for details.
Body
template_id
string
requiredLON template ID
description
string
requiredDisplay notification message
phone_numbers
array<object>
requiredvariables
object
default: "{}"requiredTemplate variables depends on its schema
curl --request POST \
--url https://api.abbie.biz/line-official-notification/push \
--header 'Authorization: <authorization>' \
--header 'Content-Type: application/json' \
--header 'x-abbie-signature: <x-abbie-signature>' \
--data '{
"template_id": "<string>",
"description": "<string>",
"phone_numbers": [
{
"target": "<string>",
"ref": "<string>"
}
],
"variables": {}
}'{ "status": "Create log success" }

