KogLeaguesService
A list of all methods in the KogLeaguesService
service. Click on the method name to view detailed information about that method.
Methods | Description |
---|---|
get_kog_leagues | List King of Glory leagues |
get_kog_leagues
List King of Glory leagues
- HTTP Method:
GET
- Endpoint:
/kog/leagues
Parameters
Name | Type | Required | Description |
---|---|---|---|
filter | FilterOverKogLeagues | ❌ | Options to filter results. String fields are case sensitive For more information on filtering, see docs. |
range | RangeOverKogLeagues | ❌ | 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 | SearchOverKogLeagues | ❌ | 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 FilterOverKogLeagues, RangeOverKogLeagues, SearchOverKogLeagues
sdk = PandascoreClient(
access_token="YOUR_ACCESS_TOKEN",
base_url=Environment.DEFAULT.value,
timeout=10000
)
filter=FilterOverKogLeagues(
id_=[
2
],
modified_at=[
"dolor dolore et"
],
name=[
"quis aliquip "
],
slug=[
"8vznaumh"
],
url=[
"ullamco adipi"
]
)
range=RangeOverKogLeagues(
id_=[
9
],
modified_at=[
"qui Duis"
],
name=[
"sunt c"
],
slug=[
"t"
],
url=[
"ea fug"
]
)
sort=[
""
]
search=SearchOverKogLeagues(
name="ut id",
slug="6nz1_90t",
url="do ullamco labo"
)
page=1
result = sdk.kog_leagues.get_kog_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