Skip to content
This repository was archived by the owner on Dec 29, 2022. It is now read-only.

Latest commit

 

History

History
47 lines (43 loc) · 826 Bytes

README_bot.md

File metadata and controls

47 lines (43 loc) · 826 Bytes

Документация API v1 для бота

Создание пользователя

authtoken/users/

POST

Создаёт пользователя.

  • Запрос:
{
  "username": "john_the_best",
  "first_name": "John",
  "last_name": "Doe",
  "vkontakte_id": 1,
  "telegram_id": 0
}
  • Ответ:
{
  "username": "john_the_best",
  "first_name": "John",
  "last_name": "Doe",
  "vkontakte_id": 1,
  "telegram_id": 0,
  "server_uuid": "3f2ce827-d276-417c-a29a-b34b90a4bb94"
}

Деактивация пользователя

users/is_active/uuid:user

PUT, PATCH

Деактивирует пользователя.

  • Запрос:
{
  "is_active": false
}
  • Ответ:
{
  "id": "27d3a710-ddbb-4aed-8c49-bb5084053b8f",
  "is_active": false
}