RBWCM-SDK Documentation - v1.1.0
    Preparing search index...

    Class RankedSystemsManager

    Manages API operations related to Ranked Systems and their Seasons.

    Hierarchy (View Summary)

    Index

    Constructors

    Properties

    client: RankedClient

    Methods

    • Starts a new season for a specific Ranked System.

      Parameters

      • rankedSystemId: string

        The ID of the parent ranked system.

      • name: string

        The name of the new season.

      Returns Promise<SeasonEntity>

      A promise resolving to the new SeasonEntity.

       const newSeason = await client.rankedSystems.startSeason('system-123', 'Winter 2024');
      console.log(`Started: ${newSeason.name}`);