GET api/topics/{topicId}/questions
Get Topics Questions
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| topicId | integer |
Required |
Body Parameters
None.
Response Information
| Name | Description | Type | Additional 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-10-29T23:11:59.9611351+01:00",
"validTill": "2025-10-29T23:11:59.9611351+01:00"
},
{
"id": 1,
"textLong": "sample string 2",
"textShort": "sample string 3",
"validFrom": "2025-10-29T23:11:59.9611351+01:00",
"validTill": "2025-10-29T23:11:59.9611351+01:00"
}
]