POST api/Account/ChangeTSEVOVerifiedStateForUser

Request Information

URI Parameters

None.

Body Parameters

UserVerificationInputModel
NameDescriptionTypeAdditional information
SessionID

string

None.

SiteUserID

integer

None.

LocationLatitude

decimal number

None.

LocationLongitude

decimal number

None.

UsersHomeStateOverride

string

None.

DepositStateOverride

string

None.

DepositAmount

decimal number

None.

CalendarMonthDepositsForStateOverride

string

None.

CalendarYearDepositsForStateOverride

string

None.

VerifiedState

boolean

None.

Request Formats

application/json, text/json

Sample:
{
  "SessionID": "sample string 1",
  "SiteUserID": 2,
  "LocationLatitude": 3.1,
  "LocationLongitude": 4.1,
  "UsersHomeStateOverride": "sample string 5",
  "DepositStateOverride": "sample string 6",
  "DepositAmount": 7.0,
  "CalendarMonthDepositsForStateOverride": "sample string 8",
  "CalendarYearDepositsForStateOverride": "sample string 9",
  "VerifiedState": true
}

text/html

Sample:
{"SessionID":"sample string 1","SiteUserID":2,"LocationLatitude":3.1,"LocationLongitude":4.1,"UsersHomeStateOverride":"sample string 5","DepositStateOverride":"sample string 6","DepositAmount":7.0,"CalendarMonthDepositsForStateOverride":"sample string 8","CalendarYearDepositsForStateOverride":"sample string 9","VerifiedState":true}

application/xml, text/xml

Sample:
<UserVerificationInputModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FantasyCoverage.BusinessObjects">
  <CalendarMonthDepositsForStateOverride>sample string 8</CalendarMonthDepositsForStateOverride>
  <CalendarYearDepositsForStateOverride>sample string 9</CalendarYearDepositsForStateOverride>
  <DepositAmount>7</DepositAmount>
  <DepositStateOverride>sample string 6</DepositStateOverride>
  <LocationLatitude>3.1</LocationLatitude>
  <LocationLongitude>4.1</LocationLongitude>
  <SessionID>sample string 1</SessionID>
  <SiteUserID>2</SiteUserID>
  <UsersHomeStateOverride>sample string 5</UsersHomeStateOverride>
  <VerifiedState>true</VerifiedState>
</UserVerificationInputModel>

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

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>