Example Message Object
{
"type": "message",
"id": "489373052",
"created_at": 1539897198,
"subject": "This is the subject - if it's an email",
"body": "<p>Hello</p>",
"message_type": "email"
}
Message are how you reach out to contacts in Intercom. They are created when an admin sends an outbound message to a contact.
Object Models
Message
Field | Type | Description |
---|---|---|
type | string | The type of the message |
id | string | The id representing the message. |
created_at | integer | The time the conversation was created. |
subject | string | The subject of the message. Only present if message_type: email. |
body | string | The message body, which may contain HTML. |
message_type | string | The type of message that was sent. Can be email, inapp, facebook or twitter. |
conversation_id | string | The associated conversation_id |