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 +} +```