LINE Official Notifications
Set callback url
POST
/
line-official-notification
/
callback
curl --request POST \
--url https://api.abbie.biz/line-official-notification/callback \
--header 'Authorization: <authorization>' \
--header 'Content-Type: application/json' \
--header 'x-abbie-signature: <x-abbie-signature>' \
--data '{
"callback_url": "<string>"
}'{ "message": "Success update channel callback URL" }
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
callback_url
string
requiredLINE Bot’s user ID
curl --request POST \
--url https://api.abbie.biz/line-official-notification/callback \
--header 'Authorization: <authorization>' \
--header 'Content-Type: application/json' \
--header 'x-abbie-signature: <x-abbie-signature>' \
--data '{
"callback_url": "<string>"
}'{ "message": "Success update channel callback URL" }

