Invites

User actions

Retrieve invite count from an user

GET https://api.invitelogger.me/v1/invites/user

Basically what the /invites command do

Request Body

{
    "total":0, 
    "leaves":0,
    "fake":0,
    "bonus":0,
    "real":0
}

Invite code

Retrieve joins from a specific invite code

GET https://api.invitelogger.me/v1/invites/code

Get an array of invited members through a specific invite code

Request Body

    {
        "created_at": "2020-08-04T08:14:37.000Z", // join date
        "updated_at": "2020-11-08T08:36:25.000Z", // if cleared = clear date, if left probably leave date.
        "member_id": "417977361011572747", // id of the invited member 
        "fake": false,  // if the invite has been counted as fake
        "left": true, // if the member has left the server 
        "cleared": false // if the invite has been cleared using the /resetinvites command
    },

Last updated