The REST API manager the router belongs to.
Readonly
restThe REST API manager the router belongs to.
Create a message on Guilded.
The created message.
messages.create('abc', 'Hello world!');
The ID of the channel the message belongs to.
The payload of the message.
Edit a message on Guilded.
The edited message.
messages.edit('abc', 'abc', 'Hello world!');
The ID of the channel the message belongs to.
The ID of the message to edit.
The payload of the message.
Fetch a message from Guilded.
The fetched message.
messages.fetch('abc', 'abc');
The ID of the channel the message belongs to.
The ID of the message to fetch.
Fetch messages from Guilded.
The fetched messages.
messages.fetch('abc');
The ID of the channel the messages belong to.
Optional
options: APIMessageFetchManyOptionsThe options to fetch messages with.
The message router for the Guilded REST API.
Example