POST api/events/{id}/question
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | string |
Required |
Body Parameters
EventQuestionDto| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
None. |
|
| Updated | date |
None. |
|
| Created | date |
None. |
|
| SortOrder | integer |
None. |
|
| Title | string |
None. |
|
| Text | string |
None. |
|
| HasFreeText | boolean |
None. |
|
| HasOptions | boolean |
None. |
|
| IsOptionsMultipleSelect | boolean |
None. |
|
| Options | Collection of EventOptionDto |
None. |
Request Formats
application/json, text/json
Sample:
{
"id": "13924725-cb89-4de9-acee-f959bc73b217",
"updated": "2025-12-20T12:21:32.7902436+01:00",
"created": "2025-12-20T12:21:32.7902436+01:00",
"sortOrder": 1,
"title": "sample string 2",
"text": "sample string 3",
"hasFreeText": true,
"hasOptions": true,
"isOptionsMultipleSelect": true,
"options": [
{
"id": "3523d13c-f062-46c4-939a-6b34c206e7f2",
"sortOrder": 1,
"text": "sample string 2",
"maxPersonAnswers": 1
},
{
"id": "3523d13c-f062-46c4-939a-6b34c206e7f2",
"sortOrder": 1,
"text": "sample string 2",
"maxPersonAnswers": 1
}
]
}
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json
Sample:
Sample not available.