-
Notifications
You must be signed in to change notification settings - Fork 15
v2.user.beatmaps.kudosu
cyperdark edited this page May 23, 2023
·
3 revisions
Return list of kudosu actions
const { auth } = require('osu-api-extended');
await auth.login(client_id, client_secret);
await v2.user.beatmaps.kudosu(user, object)
Parameter | Type | Description |
---|---|---|
user | number |
id of the user |
object.limit | number |
Maximum number of results |
object.offset | number |
Result offset for pagination |
export interface response {
id: number;
action: string;
amount: number;
model: string;
created_at: string;
giver: string;
post: {
url: string;
title: string;
};
details: {
event: string;
};
}