listGuildStickers abstract method
- @GET.new('/admin/guilds/{guild_id}/stickers')
- @Path.new('guild_id') required SnowflakeType guildId,
List guild stickers.
Lists all stickers in a guild. Returns ID, name, and asset information. Used for asset inventory and purge operations. Requires ASSET_PURGE permission.
guildId - The ID of the guild.
Implementation
@GET('/admin/guilds/{guild_id}/stickers')
Future<ListGuildStickersResponse> listGuildStickers({
@Path('guild_id') required SnowflakeType guildId,
});