RlPlayersService
A list of all methods in the RlPlayersService
service. Click on the method name to view detailed information about that method.
Methods | Description |
---|---|
get_rl_players | List players for the Rocket League videogame |
get_rl_players
List players for the Rocket League videogame
- HTTP Method:
GET
- Endpoint:
/rl/players
Parameters
Name | Type | Required | Description |
---|---|---|---|
filter | FilterOverRlPlayers | ❌ | Options to filter results. String fields are case sensitive For more information on filtering, see docs. |
range | RangeOverRlPlayers | ❌ | Options to select results within ranges For more information on ranges, see docs. |
sort | List[any] | ❌ | Options to sort results For more information on sorting, see docs. |
search | SearchOverRlPlayers | ❌ | Options to search results For more information on searching, see docs. |
page | Page | ❌ | Pagination in the form of page=2 or page[size]=30&page[number]=2 |
per_page | int | ❌ | Equivalent to page[size] |
Return Type
List[Player]
Example Usage Code Snippet
from pandascore_client import PandascoreClient, Environment
from pandascore_client.models import FilterOverRlPlayers, RangeOverRlPlayers, SearchOverRlPlayers
sdk = PandascoreClient(
access_token="YOUR_ACCESS_TOKEN",
base_url=Environment.DEFAULT.value,
timeout=10000
)
filter=FilterOverRlPlayers(
active=True,
birthday=[
"fugia"
],
first_name=[
"ipsum"
],
id_=[
5
],
last_name=[
"Utvoluptat"
],
modified_at=[
"in rep"
],
name=[
"adipi"
],
nationality=[
"sit sunt null"
],
role=[
"in ex"
],
slug=[
"a"
],
team_id=[
5
],
videogame_id=[
1
]
)
range=RangeOverRlPlayers(
birthday=[
"ex voluptate d"
],
first_name=[
"reprehenderi"
],
id_=[
2
],
last_name=[
"labore"
],
modified_at=[
"do aute adipi"
],
name=[
"nisicommodo"
],
nationality=[
"occaecat "
],
role=[
"minim"
],
slug=[
"htxdf2z4lk"
]
)
sort=[
""
]
search=SearchOverRlPlayers(
birthday="dolor",
first_name="adconsequ",
last_name="sint in lab",
name="dolore ",
nationality="culpa",
role="esse qui ex ",
slug="7cfncmu"
)
page=1
result = sdk.rl_players.get_rl_players(
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