Skip to main content

Registration Data

You can access registration data of a guild and know which Discord user is linked to which Epic user.

POST
Get user links
https://yunite.xyz/api/v3/guild/{guildId}/registration/links
Path Parameters
NameValue typeDescription
guildIdGuild ID SnowflakeThe ID of the guild you want to access
Request Body
{
    "type": "object",
    "properties": {
        "type": {
            "type": "string",
            "value": "one of ['DISCORD', 'EPIC']"
        },
        "userIds": {
            "type": "array",
            "itemSchema": {
                "type": "string",
                "value": "DisordID / EpicID, depending on given type"
            }
        }
    }
}