Basic Information

appmixer.telegram.core.MakeApiCall

Make API Call

1.0.0

Public

Performs an arbitrary authorized call against the Telegram Bot API. The path is the Bot API method name, so /sendMessage is enough - the bot token is added automatically. Use this to reach methods this connector does not expose as their own component.

Input Ports

in

FieldTypeDescription
API Endpoint Path text Bot API method name, for example /sendMessage or getChatMemberCount. A full URL is accepted as long as it stays on https://api.telegram.org.
HTTP Method select Telegram serves every Bot API method over both GET and POST - choose POST whenever there is a request body. PUT, PATCH and DELETE are offered for consistency only; the Bot API does not answer them.
Query Parameters key-value Optional query parameters appended to the URL.
Request Body textarea Enter the request body as a JSON object (supports nested objects, arrays, and non-string values).
Request Headers key-value Optional additional request headers.

Output Ports

out

FieldTypeDescription
Status Code -
Response Headers -
Response Body -

Full Metadata