POST api/FAAB/SaveBidGroup

Request Information

URI Parameters

None.

Body Parameters

FAABBidGroupInputModel
NameDescriptionTypeAdditional information
LTUID

string

None.

SessionID

string

None.

BidGroupID

integer

None.

RequestedPlayers

string

None.

DropPlayers

string

None.

FAABRunDate

date

None.

NFLWeek

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "LTUID": "sample string 1",
  "SessionID": "sample string 2",
  "BidGroupID": 3,
  "RequestedPlayers": "sample string 4",
  "DropPlayers": "sample string 5",
  "FAABRunDate": "2024-11-21T03:38:23.1951135-05:00",
  "NFLWeek": 7
}

text/html

Sample:
{"LTUID":"sample string 1","SessionID":"sample string 2","BidGroupID":3,"RequestedPlayers":"sample string 4","DropPlayers":"sample string 5","FAABRunDate":"2024-11-21T03:38:23.1951135-05:00","NFLWeek":7}

application/xml, text/xml

Sample:
<FAABBidGroupInputModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FantasyCoverage.BusinessObjects">
  <BidGroupID>3</BidGroupID>
  <DropPlayers>sample string 5</DropPlayers>
  <FAABRunDate>2024-11-21T03:38:23.1951135-05:00</FAABRunDate>
  <LTUID>sample string 1</LTUID>
  <NFLWeek>7</NFLWeek>
  <RequestedPlayers>sample string 4</RequestedPlayers>
  <SessionID>sample string 2</SessionID>
</FAABBidGroupInputModel>

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

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>