Skip to main content

RlTeamsService

A list of all methods in the RlTeamsService service. Click on the method name to view detailed information about that method.

MethodsDescription
get_rl_teamsList teams for the Rocket League videogame

get_rl_teams

List teams for the Rocket League videogame

  • HTTP Method: GET
  • Endpoint: /rl/teams

Parameters

NameTypeRequiredDescription
filterFilterOverRlTeamsOptions to filter results. String fields are case sensitive
For more information on filtering, see docs.
rangeRangeOverRlTeamsOptions to select results within ranges
For more information on ranges, see docs.
sortany[]Options to sort results
For more information on sorting, see docs.
searchSearchOverRlTeamsOptions to search results
For more information on searching, see docs.
pagePagePagination in the form of page=2 or page[size]=30&page[number]=2
perPagenumberEquivalent to page[size]

Return Type

Team[]

Example Usage Code Snippet

import {
FilterOverRlTeams,
Page,
PandascoreClient,
RangeOverRlTeams,
SearchOverRlTeams,
VideogameId,
} from 'pandascore_client';

(async () => {
const pandascoreClient = new PandascoreClient({
token: 'YOUR_TOKEN',
});

const videogameId = VideogameId._1;

const filterOverRlTeams: FilterOverRlTeams = {
acronym: ['culpa '],
id: [8],
location: ['Lorem '],
modifiedAt: ['elit'],
name: ['mollit sit'],
slug: ['zze1ryc3'],
videogameId: [videogameId],
};

const rangeOverRlTeams: RangeOverRlTeams = {
acronym: ['dolor'],
id: [2],
location: ['ut labor'],
modifiedAt: ['occaecat aute'],
name: ['exerc'],
slug: ['rok58e'],
};

const searchOverRlTeams: SearchOverRlTeams = {
acronym: 'sunt laborum p',
location: 'cupidatat ',
name: 'minim des',
slug: 'rig8',
};
const page = 1;

const { data } = await pandascoreClient.rlTeams.getRlTeams({
filter: filterOverRlTeams,
range: rangeOverRlTeams,
sort: [[]],
search: searchOverRlTeams,
page: page,
perPage: 50,
});

console.log(data);
})();

Build Your Own SDKs with  liblab

Build developer friendly SDKs in minutes from your APIs

Start for Free →