Use AI to process this documentCopy prompt
system/docs/
This endpoint manages the game's and community's documents, as they are also presented on this service.
GETdocs/
POSTdocs/module/creates a new moduledocs/document/creates OR updates an existing document => auto-callsAPI discord/log/docs/log/creates a new changelog item => auto-callsAPI discord/log/
Breakdown
GET docs/
Returns list of modules OR documents for specific module OR content of specific document.
(*) module_name: when requesting document404: module not found
document_name: use "index" for the module's index document400:module_namemissing404: module not found
POST docs/module/
Creates a new module.
* handler* module_name: max 20 characters204: module already exists
* content: standalone markdown
POST docs/document/
Creates OR updates an existing document.
(*) token: when updating* handler* module_name404: module not found
* document_name: use "index" to update a module's index document204: document cannot be updated
* content: standalone markdown
POST docs/log/
Creates a new changelog item.
* handler* title: max 20 characters* content: standalone markdown
Notes
- Documents under Announcements, the Changelog and Updates cannot be changed
< Back to docs / api