/
/Mad Devs Comedian
ChangesDocsSign in
Sign in
  • APIs
  • Generators
  • Stacks
  • Projects
  • Docs
  • History
  • Schema
Checked 1h ago · Updated 2mo ago
bots4
  • getReturns all bots
  • getFind bot by id
  • postUpdates a bot in the database with form data
  • deleteDeletes a bot
channels4
standupers4
standups4
users3
  • getCheck if Comedian is healthy
  • getRenders login page. Have no connections with UI
  • postHandles Slack events
  • getRenders admin page. Does not belong to UI
  • postUpdates config and renders admin page, does not belong to UI at all. Should be removed.
  • postHandles messages from different Comedian services. Does not belong to UI. Needed for services only
  • postHandles Slack slash commands requests, does not belong to UI. Used to integration with Slack API
  • getHandles Comedian distribution into other Slack Teams. Does not belong to UI. This endpoint handles Slack API Requests
bots

Find bot by id

Returns a single bot

get/bots/{id}

Path parameters

idinteger required

id of bot to return

Response

success

idinteger
team_idstring
team_namestring
passwordstring
language'ru_Ru' | 'en_US'

bot language

notifier_intervalinteger
reminder_repeat_maxinteger
reminder_timeinteger

Example response

{
  "team_id": "TB9KS3E13",
  "team_name": "example",
  "password": "example"
}

Changes