The REST API manager the router belongs to.
Readonly
restThe REST API manager the router belongs to.
Create a forum topic on Guilded.
The created forum topic.
topics.create('abc', { title: 'My Topic!' });
The ID of the channel the forum topic belongs to.
The payload of the forum topic.
Edit a forum topic on Guilded.
The edited forum topic.
topics.edit('abc', 123, { title: 'New Title', content: 'New Content' });
The ID of the channel the forum topic belongs to.
The ID of the forum topic to edit.
The payload of the forum topic.
Fetch a forum topic from Guilded.
The fetched forum topic.
docs.fetch('abc', 123);
The ID of the channel the forum topic belongs to.
The ID of the forum topic to fetch.
Fetch forum topics from Guilded.
The fetched forum topics.
docs.fetchMany('abc');
The ID of the channel the forum topics belong to.
Optional
options: APIForumTopicFetchManyOptionsThe options to fetch forum topics with.
The forum topic router for the Guilded REST API.
Example