-
Notifications
You must be signed in to change notification settings - Fork 16
v2.chat.channels.messages.markAsReaded
cyperdark edited this page May 23, 2023
·
1 revision
This endpoint marks the channel as having being read up to the given message_id
const { auth } = require('osu-api-extended');
await auth.login_lazer(username, password);
await v2.chat.channels.messages.markAsReaded(channel_id, message_id)
Parameter | Type | Description |
---|---|---|
channel_id | number |
The channel_id of the channel to mark as read |
message_id | number |
The message_id of the message to mark as read up to |
export interface response {
}