Projects

Bnder API documentation for Projects. Read the API Overview to get started and learn more.

Get all projects

Get all projects of the guild

GET/consumer/v1/guilds/guildId/projects
ParametersDescription
guildIdThe id of a discord guild

Request body

empty

Response

Status: 200 - List of projects

empty response

Create a new project

Create a new project in the guild

POST/consumer/v1/guilds/guildId/projects
ParametersDescription
guildIdThe id of a discord guild

Request body

empty

Response

Status: 200 - Created project

FieldTypeDescription
idstringThe ID of the project
namestringThe name of the project
is_personalbooleanWhether the project is personal
in_binbooleanWhether the project is in bin
deleted_atstringThe date and time of deletion
managerstringThe ID of the manager
logging_webhook_urlstringThe URL of the logging webhook
columnsarrayThe columns in the project
done_tasks_columnsarrayColumns in which tasks are expected to be done
default_columnstringThe default column for tasks

Update a project

Update a project in the specified guild

PUT/consumer/v1/guilds/guildId/projects/projectId
ParametersDescription
guildIdThe id of a discord guild
projectIdThe ID of the project

Request body

empty

Response

Status: 200 - Updated project

FieldTypeDescription
idstringThe ID of the project
namestringThe name of the project
is_personalbooleanWhether the project is personal
in_binbooleanWhether the project is in bin
deleted_atstringThe date and time of deletion
managerstringThe ID of the manager
logging_webhook_urlstringThe URL of the logging webhook
columnsarrayThe columns in the project
done_tasks_columnsarrayColumns in which tasks are expected to be done
default_columnstringThe default column for tasks

Delete a project

Delete a project in the specified guild

DELETE/consumer/v1/guilds/guildId/projects/projectId
ParametersDescription
guildIdThe id of a discord guild
projectIdThe ID of the project

Request body

empty

Response

Status: 204 - Project deleted

empty response