MongooseIM's REST API for backend administration
Configuration
Commands used by the REST API are provided by modules:
mod_commands - provides general purpose commands: both user-like (e.g. sending a message and retrieving messages from the archive) and administration-like (e.g. create/delete a user and change the password).
mod_muc_commands - commands related to Multi-user Chat rooms: create a room, invite users, send a message etc.
mod_muc_light_commands - same but for rooms based on the muc-light protocol.
To activate those commands, put the modules you need into the mongooseim.toml file:
1 2 3 4 5 | |
You also have to hook the mongoose_api_admin module to an HTTP endpoint as described
in the admin REST API handlers configuration
section of the listeners documentation.
Listing commands
To get a list of commands, you can use /api/commands endpoint.
Use jq utility for pretty-printing JSON.
Each command has the fields:
path- URL path for this commandmethod- HTTP method to use for this commandargs- arguments to provide inside a path or as POST argumentscategory- a name used for grouping similar commandsname- a command namedesc- description textaction- a type of a command, corresponding tomethod
path, method and args are useful to figuring out how the request should
look like (you can use Swagger instead).
name, desc and category are used just as metadata (they are not part of
any request).
action is used internally.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | |
OpenAPI specifications
Read the beautiful Swagger documentation for more information.
