browseChannelMessages abstract method
- @POST.new('/admin/messages/browse')
- @Body.new() required BrowseChannelRequest body,
Browse channel messages.
Browses messages in a channel with cursor-based pagination. Returns messages in reverse chronological order. Requires MESSAGE_LOOKUP permission.
body - Name not received - field will be skipped.
Implementation
@POST('/admin/messages/browse')
Future<BrowseChannelResponse> browseChannelMessages({
@Body() required BrowseChannelRequest body,
});