The REST API manager the router belongs to.
Readonly
restCreate a doc on Guilded.
The created doc.
docs.create('abc', 'My Doc', 'This is my doc.');
The ID of the channel the doc belongs to.
The title of the doc.
The content of the doc.
Edit a doc on Guilded.
The edited doc.
docs.edit('abc', 123, 'My Doc', 'This is my doc.');
The ID of the channel the doc belongs to.
The ID of the doc to edit.
The title of the doc.
The content of the doc.
Fetch a doc from Guilded.
The fetched doc.
docs.fetch('abc', 123);
The ID of the channel the doc belongs to.
The ID of the doc to fetch.
Fetch docs from Guilded.
The fetched docs.
docs.fetchMany('abc');
The ID of the channel the docs belong to.
Optional
options: APIDocFetchManyOptionsThe options to fetch docs with.
The doc router for the Guilded REST API.
Example