POST api/words/saveStudyRecords
保存单词学习记录(支持单个和批量)
Request Information
URI Parameters
None.
Body Parameters
WordsStudyData| Name | Description | Type | Additional information |
|---|---|---|---|
| HomeworkId | integer |
None. |
|
| StudentId | string |
None. |
|
| Records | Collection of WordsStudyRecords |
None. |
Request Formats
application/json, text/json
Sample:
{
"Records": [
{
"CreatedDatetime": "2025-12-06T14:55:01.5735069+08:00",
"CreatedBy": "sample string 2",
"UpdatedDatetime": "2025-12-06T14:55:01.5735069+08:00",
"UpdatedBy": "sample string 4",
"Id": 5,
"WordsId": 6,
"StudentId": "sample string 7",
"IsCorrect": 8,
"RefId": 9
},
{
"CreatedDatetime": "2025-12-06T14:55:01.5735069+08:00",
"CreatedBy": "sample string 2",
"UpdatedDatetime": "2025-12-06T14:55:01.5735069+08:00",
"UpdatedBy": "sample string 4",
"Id": 5,
"WordsId": 6,
"StudentId": "sample string 7",
"IsCorrect": 8,
"RefId": 9
}
],
"HomeworkId": 1,
"StudentId": "sample string 2"
}
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json
Sample:
Sample not available.