Skip to main content

R6SiegeMatchesService

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

MethodsDescription
get_r6siege_matchesList matches for the Rainbow Six Siege videogame
get_r6siege_matches_pastList past Rainbow Six Siege matches
get_r6siege_matches_runningList running Rainbow Six Siege matches
get_r6siege_matches_upcomingList upcoming Rainbow Six Siege matches

get_r6siege_matches

List matches for the Rainbow Six Siege videogame

  • HTTP Method: GET
  • Endpoint: /r6siege/matches

Parameters

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

Match[]

Example Usage Code Snippet

import {
FilterOverR6SiegeMatches,
MatchStatus,
MatchType,
MatchWinnerType,
Page,
PandascoreClient,
RangeOverR6SiegeMatches,
SearchOverR6SiegeMatches,
} from 'pandascore_client';

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

const matchType = MatchType.ALLGAMESPLAYED;

const teamIdOrSlug = 10;

const matchStatus = MatchStatus.CANCELED;

const videogameId = VideogameId._1;

const filterOverR6SiegeMatchesVideogameTitle = 4;

const filterOverR6SiegeMatchesVideogameVersion = '266391336.84111';

const opponentId = 7;

const matchWinnerType = MatchWinnerType.PLAYER;

const filterOverR6SiegeMatches: FilterOverR6SiegeMatches = {
beginAt: ['ut proident'],
detailedStats: true,
draw: true,
endAt: ['magn'],
finished: true,
forfeit: true,
future: true,
id: [3],
leagueId: [3],
matchType: [matchType],
modifiedAt: ['ani'],
name: ['aliquip culpa'],
notStarted: true,
numberOfGames: [9],
opponentId: [filterOverR6SiegeMatchesOpponentId],
opponentsFilled: true,
past: true,
running: true,
scheduledAt: ['ad eu consec'],
serieId: [1],
slug: ['6A0c8'],
status: [matchStatus],
tournamentId: [1],
unscheduled: true,
videogame: [videogameIdOrSlug],
videogameTitle: [filterOverR6SiegeMatchesVideogameTitle],
videogameVersion: [filterOverR6SiegeMatchesVideogameVersion],
winnerId: [opponentId],
winnerType: [matchWinnerType],
};
const matchType1 = MatchType.ALLGAMESPLAYED;

const matchStatus1 = MatchStatus.CANCELED;

const opponentId1 = 7;

const matchWinnerType1 = MatchWinnerType.PLAYER;

const rangeOverR6SiegeMatches: RangeOverR6SiegeMatches = {
beginAt: ['t'],
detailedStats: [true],
draw: [true],
endAt: ['dolor'],
forfeit: [true],
id: [4],
matchType: [matchType1],
modifiedAt: ['mo'],
name: ['commodo'],
numberOfGames: [1],
scheduledAt: ['sed'],
slug: ['SXr_'],
status: [matchStatus1],
tournamentId: [2],
winnerId: [opponentId1],
winnerType: [matchWinnerType1],
};
const matchType12 = MatchType.ALLGAMESPLAYED;

const matchStatus12 = MatchStatus.CANCELED;

const matchWinnerType12 = MatchWinnerType.PLAYER;

const searchOverR6SiegeMatches: SearchOverR6SiegeMatches = {
matchType: matchType12,
name: 'culpa deserun',
slug: 'rYbtGes',
status: matchStatus12,
winnerType: matchWinnerType12,
};
const page = 1;

const { data } = await pandascoreClient.r6SiegeMatches.getR6siegeMatches({
filter: filterOverR6SiegeMatches,
range: rangeOverR6SiegeMatches,
sort: [[]],
search: searchOverR6SiegeMatches,
page: page,
perPage: 50,
});

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

get_r6siege_matches_past

List past Rainbow Six Siege matches

  • HTTP Method: GET
  • Endpoint: /r6siege/matches/past

Parameters

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

Match[]

Example Usage Code Snippet

import {
FilterOverR6SiegeMatches,
MatchStatus,
MatchType,
MatchWinnerType,
Page,
PandascoreClient,
RangeOverR6SiegeMatches,
SearchOverR6SiegeMatches,
} from 'pandascore_client';

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

const matchType = MatchType.ALLGAMESPLAYED;

const teamIdOrSlug = 10;

const matchStatus = MatchStatus.CANCELED;

const videogameId = VideogameId._1;

const filterOverR6SiegeMatchesVideogameTitle = 4;

const filterOverR6SiegeMatchesVideogameVersion = '266391336.84111';

const opponentId = 7;

const matchWinnerType = MatchWinnerType.PLAYER;

const filterOverR6SiegeMatches: FilterOverR6SiegeMatches = {
beginAt: ['ut proident'],
detailedStats: true,
draw: true,
endAt: ['magn'],
finished: true,
forfeit: true,
future: true,
id: [3],
leagueId: [3],
matchType: [matchType],
modifiedAt: ['ani'],
name: ['aliquip culpa'],
notStarted: true,
numberOfGames: [9],
opponentId: [filterOverR6SiegeMatchesOpponentId],
opponentsFilled: true,
past: true,
running: true,
scheduledAt: ['ad eu consec'],
serieId: [1],
slug: ['6A0c8'],
status: [matchStatus],
tournamentId: [1],
unscheduled: true,
videogame: [videogameIdOrSlug],
videogameTitle: [filterOverR6SiegeMatchesVideogameTitle],
videogameVersion: [filterOverR6SiegeMatchesVideogameVersion],
winnerId: [opponentId],
winnerType: [matchWinnerType],
};
const matchType1 = MatchType.ALLGAMESPLAYED;

const matchStatus1 = MatchStatus.CANCELED;

const opponentId1 = 7;

const matchWinnerType1 = MatchWinnerType.PLAYER;

const rangeOverR6SiegeMatches: RangeOverR6SiegeMatches = {
beginAt: ['t'],
detailedStats: [true],
draw: [true],
endAt: ['dolor'],
forfeit: [true],
id: [4],
matchType: [matchType1],
modifiedAt: ['mo'],
name: ['commodo'],
numberOfGames: [1],
scheduledAt: ['sed'],
slug: ['SXr_'],
status: [matchStatus1],
tournamentId: [2],
winnerId: [opponentId1],
winnerType: [matchWinnerType1],
};
const matchType12 = MatchType.ALLGAMESPLAYED;

const matchStatus12 = MatchStatus.CANCELED;

const matchWinnerType12 = MatchWinnerType.PLAYER;

const searchOverR6SiegeMatches: SearchOverR6SiegeMatches = {
matchType: matchType12,
name: 'culpa deserun',
slug: 'rYbtGes',
status: matchStatus12,
winnerType: matchWinnerType12,
};
const page = 1;

const { data } = await pandascoreClient.r6SiegeMatches.getR6siegeMatchesPast({
filter: filterOverR6SiegeMatches,
range: rangeOverR6SiegeMatches,
sort: [[]],
search: searchOverR6SiegeMatches,
page: page,
perPage: 50,
});

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

get_r6siege_matches_running

List running Rainbow Six Siege matches

  • HTTP Method: GET
  • Endpoint: /r6siege/matches/running

Parameters

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

Match[]

Example Usage Code Snippet

import {
FilterOverR6SiegeMatches,
MatchStatus,
MatchType,
MatchWinnerType,
Page,
PandascoreClient,
RangeOverR6SiegeMatches,
SearchOverR6SiegeMatches,
} from 'pandascore_client';

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

const matchType = MatchType.ALLGAMESPLAYED;

const teamIdOrSlug = 10;

const matchStatus = MatchStatus.CANCELED;

const videogameId = VideogameId._1;

const filterOverR6SiegeMatchesVideogameTitle = 4;

const filterOverR6SiegeMatchesVideogameVersion = '266391336.84111';

const opponentId = 7;

const matchWinnerType = MatchWinnerType.PLAYER;

const filterOverR6SiegeMatches: FilterOverR6SiegeMatches = {
beginAt: ['ut proident'],
detailedStats: true,
draw: true,
endAt: ['magn'],
finished: true,
forfeit: true,
future: true,
id: [3],
leagueId: [3],
matchType: [matchType],
modifiedAt: ['ani'],
name: ['aliquip culpa'],
notStarted: true,
numberOfGames: [9],
opponentId: [filterOverR6SiegeMatchesOpponentId],
opponentsFilled: true,
past: true,
running: true,
scheduledAt: ['ad eu consec'],
serieId: [1],
slug: ['6A0c8'],
status: [matchStatus],
tournamentId: [1],
unscheduled: true,
videogame: [videogameIdOrSlug],
videogameTitle: [filterOverR6SiegeMatchesVideogameTitle],
videogameVersion: [filterOverR6SiegeMatchesVideogameVersion],
winnerId: [opponentId],
winnerType: [matchWinnerType],
};
const matchType1 = MatchType.ALLGAMESPLAYED;

const matchStatus1 = MatchStatus.CANCELED;

const opponentId1 = 7;

const matchWinnerType1 = MatchWinnerType.PLAYER;

const rangeOverR6SiegeMatches: RangeOverR6SiegeMatches = {
beginAt: ['t'],
detailedStats: [true],
draw: [true],
endAt: ['dolor'],
forfeit: [true],
id: [4],
matchType: [matchType1],
modifiedAt: ['mo'],
name: ['commodo'],
numberOfGames: [1],
scheduledAt: ['sed'],
slug: ['SXr_'],
status: [matchStatus1],
tournamentId: [2],
winnerId: [opponentId1],
winnerType: [matchWinnerType1],
};
const matchType12 = MatchType.ALLGAMESPLAYED;

const matchStatus12 = MatchStatus.CANCELED;

const matchWinnerType12 = MatchWinnerType.PLAYER;

const searchOverR6SiegeMatches: SearchOverR6SiegeMatches = {
matchType: matchType12,
name: 'culpa deserun',
slug: 'rYbtGes',
status: matchStatus12,
winnerType: matchWinnerType12,
};
const page = 1;

const { data } = await pandascoreClient.r6SiegeMatches.getR6siegeMatchesRunning({
filter: filterOverR6SiegeMatches,
range: rangeOverR6SiegeMatches,
sort: [[]],
search: searchOverR6SiegeMatches,
page: page,
perPage: 50,
});

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

get_r6siege_matches_upcoming

List upcoming Rainbow Six Siege matches

  • HTTP Method: GET
  • Endpoint: /r6siege/matches/upcoming

Parameters

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

Match[]

Example Usage Code Snippet

import {
FilterOverR6SiegeMatches,
MatchStatus,
MatchType,
MatchWinnerType,
Page,
PandascoreClient,
RangeOverR6SiegeMatches,
SearchOverR6SiegeMatches,
} from 'pandascore_client';

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

const matchType = MatchType.ALLGAMESPLAYED;

const teamIdOrSlug = 10;

const matchStatus = MatchStatus.CANCELED;

const videogameId = VideogameId._1;

const filterOverR6SiegeMatchesVideogameTitle = 4;

const filterOverR6SiegeMatchesVideogameVersion = '266391336.84111';

const opponentId = 7;

const matchWinnerType = MatchWinnerType.PLAYER;

const filterOverR6SiegeMatches: FilterOverR6SiegeMatches = {
beginAt: ['ut proident'],
detailedStats: true,
draw: true,
endAt: ['magn'],
finished: true,
forfeit: true,
future: true,
id: [3],
leagueId: [3],
matchType: [matchType],
modifiedAt: ['ani'],
name: ['aliquip culpa'],
notStarted: true,
numberOfGames: [9],
opponentId: [filterOverR6SiegeMatchesOpponentId],
opponentsFilled: true,
past: true,
running: true,
scheduledAt: ['ad eu consec'],
serieId: [1],
slug: ['6A0c8'],
status: [matchStatus],
tournamentId: [1],
unscheduled: true,
videogame: [videogameIdOrSlug],
videogameTitle: [filterOverR6SiegeMatchesVideogameTitle],
videogameVersion: [filterOverR6SiegeMatchesVideogameVersion],
winnerId: [opponentId],
winnerType: [matchWinnerType],
};
const matchType1 = MatchType.ALLGAMESPLAYED;

const matchStatus1 = MatchStatus.CANCELED;

const opponentId1 = 7;

const matchWinnerType1 = MatchWinnerType.PLAYER;

const rangeOverR6SiegeMatches: RangeOverR6SiegeMatches = {
beginAt: ['t'],
detailedStats: [true],
draw: [true],
endAt: ['dolor'],
forfeit: [true],
id: [4],
matchType: [matchType1],
modifiedAt: ['mo'],
name: ['commodo'],
numberOfGames: [1],
scheduledAt: ['sed'],
slug: ['SXr_'],
status: [matchStatus1],
tournamentId: [2],
winnerId: [opponentId1],
winnerType: [matchWinnerType1],
};
const matchType12 = MatchType.ALLGAMESPLAYED;

const matchStatus12 = MatchStatus.CANCELED;

const matchWinnerType12 = MatchWinnerType.PLAYER;

const searchOverR6SiegeMatches: SearchOverR6SiegeMatches = {
matchType: matchType12,
name: 'culpa deserun',
slug: 'rYbtGes',
status: matchStatus12,
winnerType: matchWinnerType12,
};
const page = 1;

const { data } = await pandascoreClient.r6SiegeMatches.getR6siegeMatchesUpcoming({
filter: filterOverR6SiegeMatches,
range: rangeOverR6SiegeMatches,
sort: [[]],
search: searchOverR6SiegeMatches,
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 →