POST api/WordOfTheDay/UpdateWordlogs
Request Information
URI Parameters
None.
Body Parameters
WordDayLogs| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| Word | string |
None. |
|
| Username | string |
None. |
|
| FirstInserted | date |
None. |
|
| ModifiedValue | string |
None. |
|
| ModifiedType | string |
None. |
|
| WordId | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"Id": 1,
"Word": "sample string 2",
"Username": "sample string 3",
"FirstInserted": "2025-12-20T17:09:46.0628986-08:00",
"ModifiedValue": "sample string 4",
"ModifiedType": "sample string 5",
"WordId": 1
}
application/xml, text/xml
Sample:
<WordDayLogs xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SpellingAPI"> <FirstInserted>2025-12-20T17:09:46.0628986-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>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
stringResponse 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>