POST api/ThematicContentBySubjectTermId
Obtiene el contenido temático por materia en un período.
Request Information
URI Parameters
None.
Body Parameters
Objeto con datos del período
ThematicContentSubjecTermIdDataRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| TermId |
Identificador del período academico. |
string |
None. |
| Nrc |
Identificador del curso. |
string |
None. |
Request Formats
application/json, text/json
Sample:
{
"termId": "sample string 1",
"nrc": "sample string 2"
}
Response Information
Resource Description
ThematicContentSubjecTermIdDataResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| ResponseCode |
Si el llamado se ejecuta correctamente |
ThematicContentBySubjectTermIdResponseType |
None. |
| ResponseMessage |
Mensaje con el estado de la invocación |
string |
None. |
| Content |
Lista de los diarios tematicos |
Collection of ThematicContentPorMateriaModel |
None. |
Response Formats
application/json, text/json
Sample:
{
"responseCode": 0,
"responseMessage": "sample string 1",
"content": [
{
"teacherDisplayName": "sample string 1",
"blockDate": "2025-12-15T06:45:42.7461242-05:00",
"schedulePlannedStartTime": "sample string 3",
"schedulePlannedEndTime": "sample string 4",
"blockClassRoomId": "sample string 5",
"thematicContentTitle": "sample string 6",
"thematicContentBody": "sample string 7"
},
{
"teacherDisplayName": "sample string 1",
"blockDate": "2025-12-15T06:45:42.7461242-05:00",
"schedulePlannedStartTime": "sample string 3",
"schedulePlannedEndTime": "sample string 4",
"blockClassRoomId": "sample string 5",
"thematicContentTitle": "sample string 6",
"thematicContentBody": "sample string 7"
}
]
}