Skip to content
Fancy Foxx edited this page Nov 20, 2023 · 2 revisions

Quote

A message sent in a group chat or server saved for posterity.

JSON Example

{
  "id": 621,
  "text": "The quick brown fox jumps over the lazy dog.",
  "date": "2020-03-15",
  "authoredBy": {"@type": "Member"},
  "quotedBy": {"@type": "Member"},
  "nsfw": false,
  "messageLink": "https://t.me/c/chat_id/message_id"
}

Properties

Property Type Description Required
id integer<int64> Unique identifier for the given quote. Auto-generated.

>= 1
Example: 621
!
text String Message text being quoted.

<= 4096 characters
Example: The quick brown fox jumps over the lazy dog.
!
date String<date> Date on which the quoted message was authored.

Example: 2020-03-15
!
authoredBy Member Member who wrote the quoted message !
quotedBy Member Member who quoted this message !
nsfw boolean Whether the quote has been flagged as adult (18+) and Not Safe For Work.

Example: false
!
messageLink String<url> Link to the original message in the group chat or server of origin.

Example: https://t.me/c/chat_id/message_id
!