POST api/Team/GetLeagueTransactionsVM
Request Information
URI Parameters
None.
Body Parameters
LeagueTransactionsInputModel| Name | Description | Type | Additional information |
|---|---|---|---|
| LTUID | string |
None. |
|
| SessionID | string |
None. |
|
| TeamID | integer |
None. |
|
| LeagueWeek | integer |
None. |
|
| TransactionTypes | string |
None. |
|
| NFLSeason | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"LTUID": "sample string 1",
"SessionID": "sample string 2",
"TeamID": 3,
"LeagueWeek": 4,
"TransactionTypes": "sample string 5",
"NFLSeason": 6
}
text/html
Sample:
{"LTUID":"sample string 1","SessionID":"sample string 2","TeamID":3,"LeagueWeek":4,"TransactionTypes":"sample string 5","NFLSeason":6}
application/xml, text/xml
Sample:
<LeagueTransactionsInputModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FantasyCoverage.BusinessObjects"> <LTUID>sample string 1</LTUID> <LeagueWeek>4</LeagueWeek> <NFLSeason>6</NFLSeason> <SessionID>sample string 2</SessionID> <TeamID>3</TeamID> <TransactionTypes>sample string 5</TransactionTypes> </LeagueTransactionsInputModel>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
ResponseModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Message | string |
None. |
|
| Status | boolean |
None. |
|
| Data | Object |
None. |
|
| ResultCode | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"Message": "sample string 1",
"Status": true,
"Data": {},
"ResultCode": 4
}
text/html
Sample:
{"Message":"sample string 1","Status":true,"Data":{},"ResultCode":4}
application/xml, text/xml
Sample:
<ResponseModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FantasyCoverage.BusinessObjects"> <Data /> <Message>sample string 1</Message> <ResultCode>4</ResultCode> <Status>true</Status> </ResponseModel>