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