Bnder Help Center

Bnder brings workspaces, tasks, tickets, calendars, knowledge, files, public Pages, booking links, and AI assistance into one product. Use this page as the starting point, then open the guide that matches the workflow you are setting up.

Start here

Core workflows

Organization and routing

Integrations and developer settings

Discord bot quickstarts

Info: 

You must have “Manage Server” permissions or be the owner of the Discord server to add a Discord bot. After you authorize the bot, it joins the server and its slash commands become available.

Use these tabs if your workspace runs Bnder through the Discord bots.

1

Setup

After adding the bot to your server, you can get a guided tour to set up some basic settings by running the following command:

/setup
2

Basic commands

We will go through some of the most common commands to get a basic understanding.

First, create a task:

/task create
title
My first task

To then display tasks, use:

/task list

You will notice that there are no tasks displayed. This is because the task you created is not assigned to you.

So, to see all the tasks that have been created so far, we can run:

/task project

The task will now appear in the todo category.

To keep track of your progress, each task has a status of todo, in progress or done. When you create a new task, the default status is todo. To change the status of a task, we need the task ID, which can be found when creating or listing tasks.

The following command sets the status of the task with the ID 1 from todo to in progress

/task status
task_id
1
status
IN_PROGRESS

All task commands can be found here.

3

Assign tasks

You can distribute tasks by assigning them to other users in Discord or to People teams in the web app. To assign the previously created task (My first task) to a user, you can use the task assign command:

/task assign
task_id
1
assignee
@SomeUser

This command assigns the task with the ID 1 to the user SomeUser.

It is also possible to assign a user to a task directly when creating it:

/task create
title
My second task
assignee
@SomeUser

When a task is assigned to a user, the user will receive a DM notification from the bot.

4

Projects

If your team is working on different things at the same time, projects come in handy. In short, a project is an isolated place for tasks. Read more about projects here.

By the way, the task “My first task” was also created in a project. This is the default project, and unless you create another, all tasks will be created in this project.

If you want to keep track of which books you want to read and which you have already read, without being distracted by other tasks, you can create a project called books:

/project create
name
books

You can now select the project by clicking on the blue “Select project” button or using this command:

/project select
name
books

Tasks you create will now be placed in books until you select another project.

For a list of all project commands, click here.

I need help

Join our Discord server here to get help from the developers and moderators.
If you use the Discord bots, view all commands here.

Next steps