PubgTeamsService
A list of all methods in the PubgTeamsService
service. Click on the method name to view detailed information about that method.
Methods | Description |
---|---|
get_pubg_teams | List teams for the PUBG videogame |
get_pubg_teams
List teams for the PUBG videogame
- HTTP Method:
GET
- Endpoint:
/pubg/teams
Parameters
Name | Type | Required | Description |
---|---|---|---|
filter | FilterOverPubgTeams | ❌ | Options to filter results. String fields are case sensitive For more information on filtering, see docs. |
range | RangeOverPubgTeams | ❌ | 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 | SearchOverPubgTeams | ❌ | 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 FilterOverPubgTeams, RangeOverPubgTeams, SearchOverPubgTeams
sdk = PandascoreClient(
access_token="YOUR_ACCESS_TOKEN",
base_url=Environment.DEFAULT.value,
timeout=10000
)
filter=FilterOverPubgTeams(
acronym=[
"dolore cillum"
],
id_=[
2
],
location=[
"nulla temp"
],
modified_at=[
"voluptate ven"
],
name=[
"irure"
],
slug=[
"1vxgxb"
],
videogame_id=[
1
]
)
range=RangeOverPubgTeams(
acronym=[
"sit do"
],
id_=[
10
],
location=[
"Lorem nos"
],
modified_at=[
"sed la"
],
name=[
"incididunt aute"
],
slug=[
"_py"
]
)
sort=[
""
]
search=SearchOverPubgTeams(
acronym="qui f",
location="voluptate com",
name="dolore incidid",
slug="l5j_lafab"
)
page=1
result = sdk.pubg_teams.get_pubg_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