GET api/topics/{topicId}/questions

Get Topics Questions

Request Information

URI Parameters

NameDescriptionTypeAdditional information
topicId

integer

Required

Body Parameters

None.

Response Information

NameDescriptionTypeAdditional information
Id

ID

integer

None.

TextLong

Text long

string

None.

TextShort

Text short

string

None.

ValidFrom

Valid from

date

None.

ValidTill

Valid till

date

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "id": 1,
    "textLong": "sample string 2",
    "textShort": "sample string 3",
    "validFrom": "2025-02-21T03:13:48.7139318+01:00",
    "validTill": "2025-02-21T03:13:48.7139318+01:00"
  },
  {
    "id": 1,
    "textLong": "sample string 2",
    "textShort": "sample string 3",
    "validFrom": "2025-02-21T03:13:48.7139318+01:00",
    "validTill": "2025-02-21T03:13:48.7139318+01:00"
  }
]