GET Player Interventions

https://pd.{shard}.a.pvp.net/restrictions/v1/activeFutureInterventions

Get active and upcoming behavioral interventions (penalties) for the player, grouped by behavior category such as AFK or queue dodging.

Headers

URL Parameters

Other Variables

Response

type PlayerInterventionsResponse = {
    /** Player UUID */
    Subject: string;
    InterventionsByCategory: {
        /** e.g. "PARTICIPATION" */
        BehaviorCategory: string;
        /** e.g. "afk" */
        BehaviorRatingName: string;
        LastRatingReduction: string;
        ActiveInterventions: {
            InterventionName: string;
            Expiry: string;
            IssuingTime: string;
            OriginInfraction: string;
        }[];
        NextInterventionNames: string[];
        AppliedInfractions: {
            [x: string]: {
                InfractionName: string;
                /** e.g. "MODERATE" */
                Severity: string;
                AppliedInterventions: {
                    InterventionName: string;
                    Expiry: string;
                    IssuingTime: string;
                    OriginInfraction: string;
                }[];
            };
        };
    }[];
};