The REST API manager the router belongs to.
Readonly
restCreate a channel on Guilded.
The created channel.
channels.create({ name: 'Chat', type: 'chat' });
The payload of the channel.
Edit a channel on Guilded.
The edited channel.
channels.edit('abc', { name: 'Chat' });
The ID of the channel to edit.
The payload of the channel.
Fetch a channel from Guilded.
The fetched channel.
channels.fetch('abc');
The ID of the channel to fetch.
The channel router for the Guilded REST API.
Example