OwTeamsService
A list of all methods in the OwTeamsService
service. Click on the method name to view detailed information about that method.
Methods | Description |
---|---|
get_ow_teams | List teams for the Overwatch videogame |
get_ow_teams
List teams for the Overwatch videogame
- HTTP Method:
GET
- Endpoint:
/ow/teams
Parameters
Name | Type | Required | Description |
---|---|---|---|
filter | FilterOverOwTeams | ❌ | Options to filter results. String fields are case sensitive For more information on filtering, see docs. |
range | RangeOverOwTeams | ❌ | 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 | SearchOverOwTeams | ❌ | 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[Team]
Example Usage Code Snippet
from pandascore_client import PandascoreClient, Environment
from pandascore_client.models import FilterOverOwTeams, RangeOverOwTeams, SearchOverOwTeams
sdk = PandascoreClient(
access_token="YOUR_ACCESS_TOKEN",
base_url=Environment.DEFAULT.value,
timeout=10000
)
filter=FilterOverOwTeams(
acronym=[
"cupid"
],
id_=[
1
],
location=[
"cupidat"
],
modified_at=[
"esse nostrud i"
],
name=[
"dolore rep"
],
slug=[
"q"
],
videogame_id=[
1
]
)
range=RangeOverOwTeams(
acronym=[
"nulla c"
],
id_=[
8
],
location=[
"quis magn"
],
modified_at=[
"fu"
],
name=[
"cillum"
],
slug=[
"t2t8"
]
)
sort=[
""
]
search=SearchOverOwTeams(
acronym="aliquip",
location="veniam non i",
name="Lorem",
slug="8kr9"
)
page=1
result = sdk.ow_teams.get_ow_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