Skip to main content

KogTeamsService

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

MethodsDescription
get_kog_teamsList teams for the King of Glory videogame

get_kog_teams

List teams for the King of Glory videogame

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

Parameters

NameTypeRequiredDescription
filterFilterOverKogTeamsOptions to filter results. String fields are case sensitive
For more information on filtering, see docs.
rangeRangeOverKogTeamsOptions 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.
searchSearchOverKogTeamsOptions 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 FilterOverKogTeams, RangeOverKogTeams, SearchOverKogTeams

sdk = PandascoreClient(
access_token="YOUR_ACCESS_TOKEN",
base_url=Environment.DEFAULT.value,
timeout=10000
)
filter=FilterOverKogTeams(
acronym=[
"ea ut"
],
id_=[
8
],
location=[
"ea Duis s"
],
modified_at=[
"labore"
],
name=[
"dolor vo"
],
slug=[
"cur_6z"
],
videogame_id=[
1
]
)
range=RangeOverKogTeams(
acronym=[
"do adipis"
],
id_=[
5
],
location=[
"Duis "
],
modified_at=[
"dolore"
],
name=[
"sunt dolore"
],
slug=[
"qwvw"
]
)
sort=[
""
]
search=SearchOverKogTeams(
acronym="paria",
location="sint anim sed",
name="reprehenderit ",
slug="nsoq"
)
page=1

result = sdk.kog_teams.get_kog_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 →