PUT Riot Geo

https://riot-geo.pas.si.riotgames.com/pas/v1/product/valorant

Get the region for a given ID token and auth token. The ID token and auth token can be obtained from Cookie Reauth

Headers:

Other Variables:

Body:

type RiotGeoBody = {
    /** The ID token */
    id_token: string;
};

Response:

type RiotGeoResponse = {
    token: string;
    /** The region IDs for PBE and live servers */
    affinities: {
        pbe: string;
        live: string;
    };
};