Skip to content

Latest commit

 

History

History
49 lines (44 loc) · 1019 Bytes

telegram.md

File metadata and controls

49 lines (44 loc) · 1019 Bytes

Telegram

  • Type = telegrams

SubTypes & Data

Adding telegram node to the scenario.

  • sendMessage (Send a message to the user)

    • Data request to create:

      {
          "data": {
            "key": "17312061423:AAHkpaaUswee",
            "chat_id": "128373",
            "text": "this is the message!"
          }
      }
    • Data response

      {
          "data": {
            "key": "17312061423:AAHkpaaUswee",
            "chat_id": "128373",
            "text": "this is the message!"
          }
      }
  • getChatMember (Get user info)

    • Data request to create:

      {
          "data": {
            "chat_id": "128373",
            "user_id": "128373"
          }
      }
    • Data response

      {
          "data": {
            "chat_id": "128373",
            "user_id": "128373"
          }
      }