LoLWildRiftLeaguesService
A list of all methods in the LoLWildRiftLeaguesService
service. Click on the method name to view detailed information about that method.
Methods | Description |
---|---|
get_lol_wild_rift_leagues | List LoL Wild Rift leagues |
get_lol_wild_rift_leagues
List LoL Wild Rift leagues
- HTTP Method:
GET
- Endpoint:
/lol-wild-rift/leagues
Parameters
Name | Type | Required | Description |
---|---|---|---|
filter | FilterOverLolWildRiftLeagues | ❌ | Options to filter results. String fields are case sensitive For more information on filtering, see docs. |
range | RangeOverLolWildRiftLeagues | ❌ | 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 | SearchOverLolWildRiftLeagues | ❌ | 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[League]
Example Usage Code Snippet
from pandascore_client import PandascoreClient, Environment
from pandascore_client.models import FilterOverLolWildRiftLeagues, RangeOverLolWildRiftLeagues, SearchOverLolWildRiftLeagues
sdk = PandascoreClient(
access_token="YOUR_ACCESS_TOKEN",
base_url=Environment.DEFAULT.value,
timeout=10000
)
filter=FilterOverLolWildRiftLeagues(
id_=[
7
],
modified_at=[
"laborum commo"
],
name=[
"offici"
],
slug=[
"aua2"
],
url=[
"ut tempor ipsu"
]
)
range=RangeOverLolWildRiftLeagues(
id_=[
1
],
modified_at=[
"aliquip"
],
name=[
"Excepte"
],
slug=[
"3-_m-u2zm7"
],
url=[
"ea Duis"
]
)
sort=[
""
]
search=SearchOverLolWildRiftLeagues(
name="sit officia ",
slug="vmrxzc",
url="cillum E"
)
page=1
result = sdk.lo_l_wild_rift_leagues.get_lol_wild_rift_leagues(
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