Receiving messages

Inbound messages

In this section, you can find sample messages of every inbound message type supported by the Channels API from Google RCS. The code snippets in every subsection demonstrate how a Google RCS 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": "3c6d204d-09d4-44b0-81a2-6e33dfdf409c",
  "channelId": "cc79a83e-ae28-4d20-9576-cd6ef76641a2",
  "sender": {
    "contact": {
      "id": "46623801-a627-4a3f-9523-363c501d459d",
      "identifierKey": "phonenumber",
      "identifierValue": "+447123456789"
    }
  },
  "receiver": {
    "connector": {
      "id": "004fe352-2e89-4b8a-a841-f401d8367a64",
      "identifierValue": "[email protected]"
    }
  },
  "body": {
    "type": "text",
    "text": {
      "text": "Incoming message"
    }
  },
  "meta": {},
  "reference": "",
  "parts": [
    {
      "platformReference": "Mx9qo66enZS0mxgbBE7XiQDg"
    }
  ],
  "status": "delivered",
  "reason": "",
  "direction": "incoming",
  "chargeableUnits": 1,
  "lastStatusAt": "2024-08-09T11:08:40.243Z",
  "createdAt": "2024-08-09T11:08:40.068Z",
  "updatedAt": "2024-08-09T11:08:40.243Z"
}

Text message from quick reply button

Text message from postback button

Image

File

Location

Last updated

Was this helpful?