EaSportsFcTeamsService
A list of all methods in the EaSportsFcTeamsService
service. Click on the method name to view detailed information about that method.
Methods | Description |
---|---|
get_fifa_teams | List teams for the EA Sports FC videogame |
get_fifa_teams
List teams for the EA Sports FC videogame
- HTTP Method:
GET
- Endpoint:
/fifa/teams
Parameters
Name | Type | Required | Description |
---|---|---|---|
filter | FilterOverFifaTeams | ❌ | Options to filter results. String fields are case sensitive For more information on filtering, see docs. |
range | RangeOverFifaTeams | ❌ | 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 | SearchOverFifaTeams | ❌ | 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 FilterOverFifaTeams, RangeOverFifaTeams, SearchOverFifaTeams
sdk = PandascoreClient(
access_token="YOUR_ACCESS_TOKEN",
base_url=Environment.DEFAULT.value,
timeout=10000
)
filter=FilterOverFifaTeams(
acronym=[
"nostrud in vel"
],
id_=[
10
],
location=[
"reprehenderit t"
],
modified_at=[
"consectetur cil"
],
name=[
"quis Lor"
],
slug=[
"d3c"
],
videogame_id=[
1
]
)
range=RangeOverFifaTeams(
acronym=[
"minim "
],
id_=[
6
],
location=[
"Duis in"
],
modified_at=[
"ut cu"
],
name=[
"consectetur "
],
slug=[
"o4l8d"
]
)
sort=[
""
]
search=SearchOverFifaTeams(
acronym="labore",
location="minim ullamco c",
name="quilaboris",
slug="9ch1_rro"
)
page=1
result = sdk.ea_sports_fc_teams.get_fifa_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