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
NameDescriptionTypeAdditional 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
NameDescriptionTypeAdditional 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-06-05T23:31:08.7473321-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-06-05T23:31:08.7473321-05:00",
      "schedulePlannedStartTime": "sample string 3",
      "schedulePlannedEndTime": "sample string 4",
      "blockClassRoomId": "sample string 5",
      "thematicContentTitle": "sample string 6",
      "thematicContentBody": "sample string 7"
    }
  ]
}