Skip to content

v2.forums.topic.reply

cyperdark edited this page May 23, 2023 · 1 revision

Edit your topic and post from the forum

Authentication

const { auth } = require('osu-api-extended');
await auth.login_lazer(username, password);

Function

await v2.forums.topic.reply(topic_id, body)

Parameters

Parameter Type Description
topic_id number Topic id
body number Message body

Response

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;
  };
}

[v3.x.x] Documentation


[v2.x.x] Documentation

Clone this wiki locally