The REST API manager the router belongs to.
Readonly
restCreate a list item on Guilded.
The created list item.
listItems.create('abc', 'Random item');
The ID of the channel the list item belongs to.
The message of the list item.
Optional
note: stringThe note of the list item.
Edit a list item on Guilded.
The edited list item.
listItems.edit('abc', 'abc', 'Random item');
The ID of the channel the list item belongs to.
The ID of the list item to edit.
The message of theb list item.
Optional
note: stringThe note of the list item.
Fetch a list item from Guilded.
The fetched list item.
listItems.fetch('abc', 'abc');
The ID of the channel the list item belongs to.
The ID of the list item to fetch.
Fetch list items from Guilded.
The fetched list items.
listItems.fetch('abc');
The ID of the channel the list items belong to.
The list item router for the Guilded REST API.
Example