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.
sortList[any]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
per_pageintEquivalent to page[size]

Return Type

List[Team]

Example Usage Code Snippet

from pandascore_client import PandascoreClient, Environment
from pandascore_client.models import FilterOverRlTeams, RangeOverRlTeams, SearchOverRlTeams

sdk = PandascoreClient(
access_token="YOUR_ACCESS_TOKEN",
base_url=Environment.DEFAULT.value,
timeout=10000
)
filter=FilterOverRlTeams(
acronym=[
"culpa "
],
id_=[
8
],
location=[
"Lorem "
],
modified_at=[
"elit"
],
name=[
"mollit sit"
],
slug=[
"zze1ryc3"
],
videogame_id=[
1
]
)
range=RangeOverRlTeams(
acronym=[
"dolor"
],
id_=[
2
],
location=[
"ut labor"
],
modified_at=[
"occaecat aute"
],
name=[
"exerc"
],
slug=[
"rok58e"
]
)
sort=[
""
]
search=SearchOverRlTeams(
acronym="sunt laborum p",
location="cupidatat ",
name="minim des",
slug="rig8"
)
page=1

result = sdk.rl_teams.get_rl_teams(
filter=filter,
range=range,
sort=sort,
search=search,
page=page,
per_page=50
)

print(result)

Build Your Own SDKs with  liblab

Build developer friendly SDKs in minutes from your APIs

Start for Free →