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
Parameters | Description |
---|---|
guildId | The 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
Parameters | Description |
---|---|
guildId | The id of a discord guild |
Request body
empty
Response
Status: 200 - Created project
Field | Type | Description |
---|---|---|
id | string | The ID of the project |
name | string | The name of the project |
is_personal | boolean | Whether the project is personal |
in_bin | boolean | Whether the project is in bin |
deleted_at | string | The date and time of deletion |
manager | string | The ID of the manager |
logging_webhook_url | string | The URL of the logging webhook |
columns | array | The columns in the project |
done_tasks_columns | array | Columns in which tasks are expected to be done |
default_column | string | The default column for tasks |
Update a project
Update a project in the specified guild
PUT/consumer/v1/guilds/guildId /projects/projectId
Parameters | Description |
---|---|
guildId | The id of a discord guild |
projectId | The ID of the project |
Request body
empty
Response
Status: 200 - Updated project
Field | Type | Description |
---|---|---|
id | string | The ID of the project |
name | string | The name of the project |
is_personal | boolean | Whether the project is personal |
in_bin | boolean | Whether the project is in bin |
deleted_at | string | The date and time of deletion |
manager | string | The ID of the manager |
logging_webhook_url | string | The URL of the logging webhook |
columns | array | The columns in the project |
done_tasks_columns | array | Columns in which tasks are expected to be done |
default_column | string | The default column for tasks |
Delete a project
Delete a project in the specified guild
DELETE/consumer/v1/guilds/guildId /projects/projectId
Parameters | Description |
---|---|
guildId | The id of a discord guild |
projectId | The ID of the project |
Request body
empty
Response
Status: 204 - Project deleted
empty response