Topics

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

Get all topics

Get all topics in the guild. Can be filtered by project id and limited. Default limit is 100

GET/consumer/v1/guilds/guildId/topics
ParametersDescription
guildIdThe id of a discord guild
limitThe number of items to return
project_idThe ID of the project

Request body

empty

Response

Status: 200 - Retrieved topics

FieldTypeDescription
topicsarrayThe list of topics

Create a topic

Create a new topic in the guild

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

Request body

empty

Response

Status: 200 - Created topic

FieldTypeDescription
idstringThe ID of the topic
namestringThe name of the topic
project_idstringThe ID of the project
delete_atstringThe date and time the topic was deleted
in_binbooleanWhether the topic is a bin

Get a topic

Get a topic by the topic id

GET/consumer/v1/guilds/guildId/topics/topicId
ParametersDescription
guildIdThe id of a discord guild
topicIdThe ID of the topic

Request body

empty

Response

Status: 200 - Retrieved topic

FieldTypeDescription
idstringThe ID of the topic
namestringThe name of the topic
project_idstringThe ID of the project
delete_atstringThe date and time the topic was deleted
in_binbooleanWhether the topic is a bin

Update a topic

Update an existing topic in the guild

PUT/consumer/v1/guilds/guildId/topics/topicId
ParametersDescription
guildIdThe id of a discord guild
topicIdThe ID of the topic

Request body

empty

Response

Status: 200 - Updated topic

FieldTypeDescription
idstringThe ID of the topic
namestringThe name of the topic
project_idstringThe ID of the project
delete_atstringThe date and time the topic was deleted
in_binbooleanWhether the topic is a bin

Delete a topic

Delete a topic in the guild and all documents inside the topic

DELETE/consumer/v1/guilds/guildId/topics/topicId
ParametersDescription
guildIdThe id of a discord guild
topicIdThe ID of the topic

Request body

empty

Response

Status: 204 - Topic deleted

empty response