Skip to main content

OwSeriesService

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

MethodsDescription
get_ow_seriesList series for the Overwatch videogame
get_ow_series_pastList past Overwatch series
get_ow_series_runningList running Overwatch series
get_ow_series_upcomingList upcoming Overwatch series

get_ow_series

List series for the Overwatch videogame

  • HTTP Method: GET
  • Endpoint: /ow/series

Parameters

NameTypeRequiredDescription
filterFilterOverOwSeriesOptions to filter results. String fields are case sensitive
For more information on filtering, see docs.
rangeRangeOverOwSeriesOptions to select results within ranges
For more information on ranges, see docs.
sortany[]Options to sort results
For more information on sorting, see docs.
searchSearchOverOwSeriesOptions 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

Serie[]

Example Usage Code Snippet

import {
FilterOverOwSeries,
OpponentType,
Page,
PandascoreClient,
RangeOverOwSeries,
SearchOverOwSeries,
} from 'pandascore_client';

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

const filterOverOwSeriesVideogameTitle = 5;

const opponentId = 7;

const opponentType = OpponentType.PLAYER;

const filterOverOwSeries: FilterOverOwSeries = {
beginAt: ['deserunt'],
endAt: ['dolore'],
id: [8],
leagueId: [3],
modifiedAt: ['non in '],
name: ['ut consectetu'],
season: ['incidi'],
slug: ['0s_31dv1'],
videogameTitle: [filterOverOwSeriesVideogameTitle],
winnerId: [opponentId],
winnerType: [opponentType],
year: [123],
};
const opponentId1 = 7;

const opponentType1 = OpponentType.PLAYER;

const rangeOverOwSeries: RangeOverOwSeries = {
beginAt: ['Exce'],
endAt: ['t'],
id: [1],
leagueId: [2],
modifiedAt: ['nostrud i'],
name: ['sed enim do'],
season: ['culpa laborum '],
slug: ['98'],
winnerId: [opponentId1],
winnerType: [opponentType1],
year: [123],
};
const opponentType12 = OpponentType.PLAYER;

const searchOverOwSeries: SearchOverOwSeries = {
name: 'ut qui',
season: 'eiusmod',
slug: 'van0',
winnerType: opponentType12,
};
const page = 1;

const { data } = await pandascoreClient.owSeries.getOwSeries({
filter: filterOverOwSeries,
range: rangeOverOwSeries,
sort: [[]],
search: searchOverOwSeries,
page: page,
perPage: 50,
});

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

get_ow_series_past

List past Overwatch series

  • HTTP Method: GET
  • Endpoint: /ow/series/past

Parameters

NameTypeRequiredDescription
filterFilterOverOwSeriesOptions to filter results. String fields are case sensitive
For more information on filtering, see docs.
rangeRangeOverOwSeriesOptions to select results within ranges
For more information on ranges, see docs.
sortany[]Options to sort results
For more information on sorting, see docs.
searchSearchOverOwSeriesOptions 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

Serie[]

Example Usage Code Snippet

import {
FilterOverOwSeries,
OpponentType,
Page,
PandascoreClient,
RangeOverOwSeries,
SearchOverOwSeries,
} from 'pandascore_client';

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

const filterOverOwSeriesVideogameTitle = 5;

const opponentId = 7;

const opponentType = OpponentType.PLAYER;

const filterOverOwSeries: FilterOverOwSeries = {
beginAt: ['deserunt'],
endAt: ['dolore'],
id: [8],
leagueId: [3],
modifiedAt: ['non in '],
name: ['ut consectetu'],
season: ['incidi'],
slug: ['0s_31dv1'],
videogameTitle: [filterOverOwSeriesVideogameTitle],
winnerId: [opponentId],
winnerType: [opponentType],
year: [123],
};
const opponentId1 = 7;

const opponentType1 = OpponentType.PLAYER;

const rangeOverOwSeries: RangeOverOwSeries = {
beginAt: ['Exce'],
endAt: ['t'],
id: [1],
leagueId: [2],
modifiedAt: ['nostrud i'],
name: ['sed enim do'],
season: ['culpa laborum '],
slug: ['98'],
winnerId: [opponentId1],
winnerType: [opponentType1],
year: [123],
};
const opponentType12 = OpponentType.PLAYER;

const searchOverOwSeries: SearchOverOwSeries = {
name: 'ut qui',
season: 'eiusmod',
slug: 'van0',
winnerType: opponentType12,
};
const page = 1;

const { data } = await pandascoreClient.owSeries.getOwSeriesPast({
filter: filterOverOwSeries,
range: rangeOverOwSeries,
sort: [[]],
search: searchOverOwSeries,
page: page,
perPage: 50,
});

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

get_ow_series_running

List running Overwatch series

  • HTTP Method: GET
  • Endpoint: /ow/series/running

Parameters

NameTypeRequiredDescription
filterFilterOverOwSeriesOptions to filter results. String fields are case sensitive
For more information on filtering, see docs.
rangeRangeOverOwSeriesOptions to select results within ranges
For more information on ranges, see docs.
sortany[]Options to sort results
For more information on sorting, see docs.
searchSearchOverOwSeriesOptions 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

Serie[]

Example Usage Code Snippet

import {
FilterOverOwSeries,
OpponentType,
Page,
PandascoreClient,
RangeOverOwSeries,
SearchOverOwSeries,
} from 'pandascore_client';

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

const filterOverOwSeriesVideogameTitle = 5;

const opponentId = 7;

const opponentType = OpponentType.PLAYER;

const filterOverOwSeries: FilterOverOwSeries = {
beginAt: ['deserunt'],
endAt: ['dolore'],
id: [8],
leagueId: [3],
modifiedAt: ['non in '],
name: ['ut consectetu'],
season: ['incidi'],
slug: ['0s_31dv1'],
videogameTitle: [filterOverOwSeriesVideogameTitle],
winnerId: [opponentId],
winnerType: [opponentType],
year: [123],
};
const opponentId1 = 7;

const opponentType1 = OpponentType.PLAYER;

const rangeOverOwSeries: RangeOverOwSeries = {
beginAt: ['Exce'],
endAt: ['t'],
id: [1],
leagueId: [2],
modifiedAt: ['nostrud i'],
name: ['sed enim do'],
season: ['culpa laborum '],
slug: ['98'],
winnerId: [opponentId1],
winnerType: [opponentType1],
year: [123],
};
const opponentType12 = OpponentType.PLAYER;

const searchOverOwSeries: SearchOverOwSeries = {
name: 'ut qui',
season: 'eiusmod',
slug: 'van0',
winnerType: opponentType12,
};
const page = 1;

const { data } = await pandascoreClient.owSeries.getOwSeriesRunning({
filter: filterOverOwSeries,
range: rangeOverOwSeries,
sort: [[]],
search: searchOverOwSeries,
page: page,
perPage: 50,
});

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

get_ow_series_upcoming

List upcoming Overwatch series

  • HTTP Method: GET
  • Endpoint: /ow/series/upcoming

Parameters

NameTypeRequiredDescription
filterFilterOverOwSeriesOptions to filter results. String fields are case sensitive
For more information on filtering, see docs.
rangeRangeOverOwSeriesOptions to select results within ranges
For more information on ranges, see docs.
sortany[]Options to sort results
For more information on sorting, see docs.
searchSearchOverOwSeriesOptions 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

Serie[]

Example Usage Code Snippet

import {
FilterOverOwSeries,
OpponentType,
Page,
PandascoreClient,
RangeOverOwSeries,
SearchOverOwSeries,
} from 'pandascore_client';

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

const filterOverOwSeriesVideogameTitle = 5;

const opponentId = 7;

const opponentType = OpponentType.PLAYER;

const filterOverOwSeries: FilterOverOwSeries = {
beginAt: ['deserunt'],
endAt: ['dolore'],
id: [8],
leagueId: [3],
modifiedAt: ['non in '],
name: ['ut consectetu'],
season: ['incidi'],
slug: ['0s_31dv1'],
videogameTitle: [filterOverOwSeriesVideogameTitle],
winnerId: [opponentId],
winnerType: [opponentType],
year: [123],
};
const opponentId1 = 7;

const opponentType1 = OpponentType.PLAYER;

const rangeOverOwSeries: RangeOverOwSeries = {
beginAt: ['Exce'],
endAt: ['t'],
id: [1],
leagueId: [2],
modifiedAt: ['nostrud i'],
name: ['sed enim do'],
season: ['culpa laborum '],
slug: ['98'],
winnerId: [opponentId1],
winnerType: [opponentType1],
year: [123],
};
const opponentType12 = OpponentType.PLAYER;

const searchOverOwSeries: SearchOverOwSeries = {
name: 'ut qui',
season: 'eiusmod',
slug: 'van0',
winnerType: opponentType12,
};
const page = 1;

const { data } = await pandascoreClient.owSeries.getOwSeriesUpcoming({
filter: filterOverOwSeries,
range: rangeOverOwSeries,
sort: [[]],
search: searchOverOwSeries,
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 →