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.
sortany[]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
perPagenumberEquivalent to page[size]

Return Type

Team[]

Example Usage Code Snippet

import {
FilterOverKogTeams,
Page,
PandascoreClient,
RangeOverKogTeams,
SearchOverKogTeams,
VideogameId,
} from 'pandascore_client';

(async () => {
const pandascoreClient = new PandascoreClient({
token: 'YOUR_TOKEN',
});

const videogameId = VideogameId._1;

const filterOverKogTeams: FilterOverKogTeams = {
acronym: ['ea ut'],
id: [8],
location: ['ea Duis s'],
modifiedAt: ['labore'],
name: ['dolor vo'],
slug: ['cur_6z'],
videogameId: [videogameId],
};

const rangeOverKogTeams: RangeOverKogTeams = {
acronym: ['do adipis'],
id: [5],
location: ['Duis '],
modifiedAt: ['dolore'],
name: ['sunt dolore'],
slug: ['qwvw'],
};

const searchOverKogTeams: SearchOverKogTeams = {
acronym: 'paria',
location: 'sint anim sed',
name: 'reprehenderit ',
slug: 'nsoq',
};
const page = 1;

const { data } = await pandascoreClient.kogTeams.getKogTeams({
filter: filterOverKogTeams,
range: rangeOverKogTeams,
sort: [[]],
search: searchOverKogTeams,
page: page,
perPage: 50,
});

console.log(data);
})();

Build Your Own SDKs with  liblab

Build developer friendly SDKs in minutes from your APIs

Start for Free →