From c99b7b7e316aa6dfafd25372a0db9bf826d29f86 Mon Sep 17 00:00:00 2001 From: Anton Titovets <bayselonarrend@gmail.com> Date: Fri, 9 Aug 2024 16:58:39 +0300 Subject: [PATCH] =?UTF-8?q?=D0=9E=D0=B1=D0=BD=D0=BE=D0=B2=D0=BB=D0=B5?= =?UTF-8?q?=D0=BD=D0=B8=D0=B5=20=D0=B4=D0=BE=D0=BA=D0=BE=D0=B2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/en/md/VKTeams/Common-methods/Check-token.md | 7 ++++++- docs/en/md/VKTeams/Common-methods/Get-events.md | 7 ++++++- docs/en/md/VKTeams/Message-sending/Send-text-message.md | 7 ++++++- docs/ru/md/VKTeams/Common-methods/Check-token.md | 7 ++++++- docs/ru/md/VKTeams/Common-methods/Get-events.md | 7 ++++++- docs/ru/md/VKTeams/Message-sending/Send-text-message.md | 7 ++++++- 6 files changed, 36 insertions(+), 6 deletions(-) diff --git a/docs/en/md/VKTeams/Common-methods/Check-token.md b/docs/en/md/VKTeams/Common-methods/Check-token.md index 0625d86806..b9f9d2c90d 100644 --- a/docs/en/md/VKTeams/Common-methods/Check-token.md +++ b/docs/en/md/VKTeams/Common-methods/Check-token.md @@ -33,4 +33,9 @@ Method at API documentation: [GET /self/get](https://teams.vk.com/botapi/#/self/ ``` - +```json title="Result" +{ + "userId": "1011893356", + "ok": true +} +``` diff --git a/docs/en/md/VKTeams/Common-methods/Get-events.md b/docs/en/md/VKTeams/Common-methods/Get-events.md index c086e944da..fad020ca5c 100644 --- a/docs/en/md/VKTeams/Common-methods/Get-events.md +++ b/docs/en/md/VKTeams/Common-methods/Get-events.md @@ -35,4 +35,9 @@ Method at API documentation: [GET /events/get](https://teams.vk.com/botapi/#/eve ``` - +```json title="Result" +{ + "events": [], + "ok": true +} +``` diff --git a/docs/en/md/VKTeams/Message-sending/Send-text-message.md b/docs/en/md/VKTeams/Message-sending/Send-text-message.md index b1387eb7c9..0ce1172c0f 100644 --- a/docs/en/md/VKTeams/Message-sending/Send-text-message.md +++ b/docs/en/md/VKTeams/Message-sending/Send-text-message.md @@ -40,4 +40,9 @@ You can mention a user by appending their userId to the text in the following fo ``` - +```json title="Result" +{ + "msgId": "7401135795345555471", + "ok": true +} +``` diff --git a/docs/ru/md/VKTeams/Common-methods/Check-token.md b/docs/ru/md/VKTeams/Common-methods/Check-token.md index 789629146c..8832f8f3e6 100644 --- a/docs/ru/md/VKTeams/Common-methods/Check-token.md +++ b/docs/ru/md/VKTeams/Common-methods/Check-token.md @@ -33,4 +33,9 @@ sidebar_position: 1 ``` - +```json title="Результат" +{ + "userId": "1011893356", + "ok": true +} +``` diff --git a/docs/ru/md/VKTeams/Common-methods/Get-events.md b/docs/ru/md/VKTeams/Common-methods/Get-events.md index 02ef23d6a6..d7a28d7b13 100644 --- a/docs/ru/md/VKTeams/Common-methods/Get-events.md +++ b/docs/ru/md/VKTeams/Common-methods/Get-events.md @@ -35,4 +35,9 @@ sidebar_position: 2 ``` - +```json title="Результат" +{ + "events": [], + "ok": true +} +``` diff --git a/docs/ru/md/VKTeams/Message-sending/Send-text-message.md b/docs/ru/md/VKTeams/Message-sending/Send-text-message.md index f592b78da7..ebdc7a67d3 100644 --- a/docs/ru/md/VKTeams/Message-sending/Send-text-message.md +++ b/docs/ru/md/VKTeams/Message-sending/Send-text-message.md @@ -40,4 +40,9 @@ sidebar_position: 1 ``` - +```json title="Результат" +{ + "msgId": "7401135795345555471", + "ok": true +} +```