POST api/WordOfTheDay/AttemptWord

Request Information

URI Parameters

None.

Body Parameters

WordDayStatistics
NameDescriptionTypeAdditional information
Id

integer

None.

Word

string

None.

QuizType

byte

None.

AnswerType

byte

None.

Username

string

None.

Answer

string

None.

InputAnswer

string

None.

WordId

integer

None.

InsertedDate

date

None.

Request Formats

application/json, text/json

Sample:
{
  "Id": 1,
  "Word": "sample string 2",
  "QuizType": 64,
  "AnswerType": 64,
  "Username": "sample string 3",
  "Answer": "sample string 4",
  "InputAnswer": "sample string 5",
  "WordId": 1,
  "InsertedDate": "2025-12-20T17:11:25.3473451-08:00"
}

application/xml, text/xml

Sample:
<WordDayStatistics xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SpellingAPI">
  <Answer>sample string 4</Answer>
  <AnswerType>64</AnswerType>
  <Id>1</Id>
  <InputAnswer>sample string 5</InputAnswer>
  <InsertedDate>2025-12-20T17:11:25.3473451-08:00</InsertedDate>
  <QuizType>64</QuizType>
  <Username>sample string 3</Username>
  <Word>sample string 2</Word>
  <WordId>1</WordId>
</WordDayStatistics>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

string

Response Formats

application/json, text/json

Sample:
"sample string 1"

application/xml, text/xml

Sample:
<string xmlns="http://schemas.microsoft.com/2003/10/Serialization/">sample string 1</string>