Receiving messages

Inbound messages

In this section, you can find sample messages of every inbound message type supported by the Channels API from Line. The code snippets in every subsection demonstrate how a Line message is converted into a Channels API message.

See the following pages to understand more about retrieving messages or message statuses

Text

Text message

{
    "id": "c2d34cdb-db79-4e3c-8cb1-5ba991c25b84",
    "channelId": "a1d50881-64f5-456c-a8ae-da18c0f203da",
    "sender": {
        "contact": {
            "id": "fb4bed31-cd9e-441b-b56d-6571c7ca8c30",
            "identifierKey": "line-2005309875",
            "identifierValue": "U82767028f6ac7935be3c631e2993212b",
            "annotations": {
                "name": "Test user"
            }
        }
    },
    "receiver": {
        "connector": {
            "id": "e2bf1441-2edd-483f-bfa3-6d30106177c0",
            "identifierValue": "2005309875"
        }
    },
    "body": {
        "type": "text",
        "text": {
            "text": "Incoming message"
        }
    },
    "meta": {},
    "reference": "",
    "parts": [
        {
            "platformReference": "518665685510651928"
        }
    ],
    "status": "delivered",
    "reason": "",
    "direction": "incoming",
    "chargeableUnits": 1,
    "lastStatusAt": "2024-07-26T07:49:07.923Z",
    "createdAt": "2024-07-26T07:49:07.588Z",
    "updatedAt": "2024-07-26T07:49:07.923Z"
}

Text message with emoji

Image

File

Location

Interactive message

Interactive message reply

Interactive message postback

Last updated

Was this helpful?