GET api/WordOfTheDay/WordUpdateHistory?id={id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

Body Parameters

None.

Response Information

Resource Description

Collection of WordDayLogs
NameDescriptionTypeAdditional information
Id

integer

None.

Word

string

None.

Username

string

None.

FirstInserted

date

None.

ModifiedValue

string

None.

ModifiedType

string

None.

WordId

integer

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Id": 1,
    "Word": "sample string 2",
    "Username": "sample string 3",
    "FirstInserted": "2025-12-20T17:09:46.0472674-08:00",
    "ModifiedValue": "sample string 4",
    "ModifiedType": "sample string 5",
    "WordId": 1
  },
  {
    "Id": 1,
    "Word": "sample string 2",
    "Username": "sample string 3",
    "FirstInserted": "2025-12-20T17:09:46.0472674-08:00",
    "ModifiedValue": "sample string 4",
    "ModifiedType": "sample string 5",
    "WordId": 1
  }
]

application/xml, text/xml

Sample:
<ArrayOfWordDayLogs xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SpellingAPI">
  <WordDayLogs>
    <FirstInserted>2025-12-20T17:09:46.0472674-08:00</FirstInserted>
    <Id>1</Id>
    <ModifiedType>sample string 5</ModifiedType>
    <ModifiedValue>sample string 4</ModifiedValue>
    <Username>sample string 3</Username>
    <Word>sample string 2</Word>
    <WordId>1</WordId>
  </WordDayLogs>
  <WordDayLogs>
    <FirstInserted>2025-12-20T17:09:46.0472674-08:00</FirstInserted>
    <Id>1</Id>
    <ModifiedType>sample string 5</ModifiedType>
    <ModifiedValue>sample string 4</ModifiedValue>
    <Username>sample string 3</Username>
    <Word>sample string 2</Word>
    <WordId>1</WordId>
  </WordDayLogs>
</ArrayOfWordDayLogs>