Attendee Questions​
Endpoints to manage attendee questions for events.
Operations​
GET/api/v2/events/{eventId}/attendee-questionsPOST/api/v2/events/{eventId}/attendee-questionsGET/api/v2/events/{eventId}/attendee-questions/{id}DELETE/api/v2/events/{eventId}/attendee-questions/{id}PATCH/api/v2/events/{eventId}/attendee-questions/{id}POST/api/v2/events/{eventId}/ticket-types/{id}/attendee-questionsPOST/api/v2/events/{eventId}/attendee-questions/bulk-delete
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
Requiredinteger
Format
"int64"Query Parameters
questionId*
Question ID
Type
Requiredinteger
Format
"int64"ticketTypeId*
Ticket Type ID
Type
Requiredinteger
Format
"int64"Responses​
Attendee Question list
application/json
{
 Â
 Â
 Â
 Â
 Â
 Â
}
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
Requiredinteger
Format
"int64"Request Body​
application/json
"string"
Responses​
Created attendee question
application/json
{
 Â
}
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
Requiredinteger
Format
"int64"id*
Attendee Question ID
Type
Requiredinteger
Format
"int64"Responses​
Attendee Question object
application/json
{
 Â
}
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
Requiredinteger
Format
"int64"id*
Attendee Question ID
Type
Requiredinteger
Format
"int64"Responses​
Attendee question deleted successfully
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
Requiredinteger
Format
"int64"id*
Id of the attendee question to update
Type
Requiredinteger
Format
"int64"Request Body​
application/json
"string"
Responses​
Updated attendee question
application/json
{
 Â
}
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
Requiredinteger
Format
"int64"id*
Ticket type ID
Type
Requiredinteger
Format
"int64"Request Body​
application/json
{
 Â
 Â
 Â
 Â
}
Responses​
Created multiple attendee question
application/json
{
 Â
}
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
Requiredinteger
Format
"int64"Request Body​
application/json
{
 Â
 Â
 Â
 Â
 Â
 Â
 Â
 Â
 Â
 Â
 Â
 Â
 Â
 Â
 Â
}
Responses​
Attendee Questions deleted successfully
