-
Notifications
You must be signed in to change notification settings - Fork 18
v2.forums.topic.reply
cyperdark edited this page May 23, 2023
·
1 revision
Edit your topic and post from the forum
const { auth } = require('osu-api-extended');await auth.login_lazer(username, password);await v2.forums.topic.reply(topic_id, body)| Parameter | Type | Description |
|---|---|---|
| topic_id | number |
Topic id |
| body | number |
Message body |
export interface response {
created_at: string;
deleted_at: string;
edited_at: string;
edited_by_id: string;
forum_id: number;
id: number;
topic_id: number;
user_id: number;
body: {
html: string;
raw: string;
};
}