POST api/Team/GetTeamLineupSwapActions

Request Information

URI Parameters

None.

Body Parameters

TeamRosterSwapInputModel
NameDescriptionTypeAdditional information
LeagueID

integer

None.

TeamID

integer

None.

NFLWeek

integer

None.

SuperflexLeague

boolean

None.

PlayerID

string

None.

StartingSlotLabel

string

None.

Request Formats

application/json, text/json

Sample:
{
  "LeagueID": 1,
  "TeamID": 2,
  "NFLWeek": 3,
  "SuperflexLeague": true,
  "PlayerID": "sample string 5",
  "StartingSlotLabel": "sample string 6"
}

text/html

Sample:
{"LeagueID":1,"TeamID":2,"NFLWeek":3,"SuperflexLeague":true,"PlayerID":"sample string 5","StartingSlotLabel":"sample string 6"}

application/xml, text/xml

Sample:
<TeamRosterSwapInputModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FantasyCoverage.BusinessObjects">
  <LeagueID>1</LeagueID>
  <NFLWeek>3</NFLWeek>
  <PlayerID>sample string 5</PlayerID>
  <StartingSlotLabel>sample string 6</StartingSlotLabel>
  <SuperflexLeague>true</SuperflexLeague>
  <TeamID>2</TeamID>
</TeamRosterSwapInputModel>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'TeamRosterSwapInputModel'.

Response Information

Resource Description

ResponseModel
NameDescriptionTypeAdditional 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>