Skip to content

List Attendee Questions​

GET
/api/v2/events/{eventId}/attendee-questions

Returns a list of attendee question for an event

Authorizations​

bearerAuth
Type
HTTP (bearer)

Parameters​

Path Parameters

eventId*

Event Id

Type
integer
Required
Format
"int64"

Query Parameters

questionId*

Question ID

Type
integer
Required
Format
"int64"
ticketTypeId*

Ticket Type ID

Type
integer
Required
Format
"int64"

Responses​

Attendee Question list

application/json
JSON
{
  
"count": 10,
  
"totalCount": 25,
  
"limit": 50,
  
"offset": 25,
  
"data": [
  
]
}

Playground​

Authorization
Variables
Key
Value

Samples​


Create attendee question​

POST
/api/v2/events/{eventId}/attendee-questions

Create a attendee question for an event

Authorizations​

bearerAuth
Type
HTTP (bearer)

Parameters​

Path Parameters

eventId*

Event ID

Type
integer
Required
Format
"int64"

Request Body​

application/json
JSON
"string"

Responses​

Created attendee question

application/json
JSON
{
  
"data": "string"
}

Playground​

Authorization
Variables
Key
Value
Body

Samples​


Get Attendee Question by ID API Endpoint​

GET
/api/v2/events/{eventId}/attendee-questions/{id}

Authorizations​

bearerAuth
Type
HTTP (bearer)

Parameters​

Path Parameters

eventId*

Event Id

Type
integer
Required
Format
"int64"
id*

Attendee Question ID

Type
integer
Required
Format
"int64"

Responses​

Attendee Question object

application/json
JSON
{
  
"data": "string"
}

Playground​

Authorization
Variables
Key
Value

Samples​


Delete attendee question​

DELETE
/api/v2/events/{eventId}/attendee-questions/{id}

Delete a attendee question

Authorizations​

bearerAuth
Type
HTTP (bearer)

Parameters​

Path Parameters

eventId*

Event ID

Type
integer
Required
Format
"int64"
id*

Attendee Question ID

Type
integer
Required
Format
"int64"

Responses​

Attendee question deleted successfully

Playground​

Authorization
Variables
Key
Value

Samples​


Update ordering of attendee question​

PATCH
/api/v2/events/{eventId}/attendee-questions/{id}

Update ordering of attendee question

Authorizations​

bearerAuth
Type
HTTP (bearer)

Parameters​

Path Parameters

eventId*

Event ID

Type
integer
Required
Format
"int64"
id*

Id of the attendee question to update

Type
integer
Required
Format
"int64"

Request Body​

application/json
JSON
"string"

Responses​

Updated attendee question

application/json
JSON
{
  
"data": "string"
}

Playground​

Authorization
Variables
Key
Value
Body

Samples​


Create multiple attendee question​

POST
/api/v2/events/{eventId}/ticket-types/{id}/attendee-questions

Create multiple attendee question for an event

Authorizations​

bearerAuth
Type
HTTP (bearer)

Parameters​

Path Parameters

eventId*

Event ID

Type
integer
Required
Format
"int64"
id*

Ticket type ID

Type
integer
Required
Format
"int64"

Request Body​

application/json
JSON
{
  
"questionIds": [
  
  
0
  
]
}

Responses​

Created multiple attendee question

application/json
JSON
{
  
"data": "string"
}

Playground​

Authorization
Variables
Key
Value
Body

Samples​


Delete multiple attendee questions​

POST
/api/v2/events/{eventId}/attendee-questions/bulk-delete

Deletes multiple attendee questions

Authorizations​

bearerAuth
Type
HTTP (bearer)

Parameters​

Path Parameters

eventId*

Event ID

Type
integer
Required
Format
"int64"

Request Body​

application/json
JSON
{
  
"ids": [
  
  
[
  
  
  
1,
  
  
  
2,
  
  
  
3
  
  
]
  
]
}

Responses​

Attendee Questions deleted successfully

Playground​

Authorization
Variables
Key
Value
Body

Samples​


Powered by VitePress OpenAPI