Nabd Messaging
  1. Send Message (Telegram)
Nabd Messaging
  • Getting Started
  • Send Message (WhatsApp)
    • Send plain text (WhatsApp)
      POST
  • Send Message (Telegram)
    • Send plain text (Telegram, by username)
      POST
    • Send plain text (Telegram, by user ID)
      POST
  • Send with Template
    • Send with template (WhatsApp)
      POST
    • Send with template (Telegram)
      POST
  • Send with Media
    • Send image or document (WhatsApp)
      POST
    • Send image or document (Telegram)
      POST
  • Managing Apps
  1. Send Message (Telegram)

Send plain text (Telegram, by user ID)

POST
/api/create-message

Send a plain text Telegram message (using user ID)#

Same as the username request, but to is the recipient's Telegram numeric user ID (string). Use this when you have the user ID from your database or from Telegram API.

Request

Header Params

Body Params application/json

Examples

Responses

🟢200
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST '/api/create-message' \
--header 'Accept: application/json' \
--header 'Content-Type: application/json' \
--data-raw '{
  "authkey": "{{authkey}}",
  "appkey": "{{appkey}}",
  "channel": "telegram",
  "to": "123456789012",
  "message": "Hello by user ID"
}'
Response Response Example
{}
Modified at 2026-03-03 23:38:15
Previous
Send plain text (Telegram, by username)
Next
Send with Template
Built with