POST api/Team/SaveWatchListPlayer

Request Information

URI Parameters

None.

Body Parameters

SaveWatchListInputModel
NameDescriptionTypeAdditional information
LeagueID

string

None.

PlayerID

string

None.

TeamID

string

None.

DBID

string

None.

Indicator

string

None.

Request Formats

application/json, text/json

Sample:
{
  "LeagueID": "sample string 1",
  "PlayerID": "sample string 2",
  "TeamID": "sample string 3",
  "DBID": "sample string 4",
  "Indicator": "sample string 5"
}

text/html

Sample:
{"LeagueID":"sample string 1","PlayerID":"sample string 2","TeamID":"sample string 3","DBID":"sample string 4","Indicator":"sample string 5"}

application/xml, text/xml

Sample:
<SaveWatchListInputModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FantasyCoverage.BusinessObjects">
  <DBID>sample string 4</DBID>
  <Indicator>sample string 5</Indicator>
  <LeagueID>sample string 1</LeagueID>
  <PlayerID>sample string 2</PlayerID>
  <TeamID>sample string 3</TeamID>
</SaveWatchListInputModel>

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 'SaveWatchListInputModel'.

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>