Skip to content

Get wave times​

GET
/api/v2/events/{eventId}/wave-times

Returns a list of wave times for an event

Authorizations​

bearerAuth
Type
HTTP (bearer)

Parameters​

Path Parameters

eventId*

Event Id

Type
integer
Required
Format
"int64"

Responses​

Wave time list

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

Playground​

Authorization
Variables
Key
Value

Samples​


Create a new wave time​

POST
/api/v2/events/{eventId}/wave-times

Create wave time

Authorizations​

bearerAuth
Type
HTTP (bearer)

Parameters​

Path Parameters

eventId*

Event Id

Type
integer
Required
Format
"int64"

Request Body​

application/json
JSON
"string"

Responses​

Created wave time object

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

Playground​

Authorization
Variables
Key
Value
Body

Samples​


Returns the given wave time.​

GET
/api/v2/wave-time/{waveTimeId}

Returns the given wave time.

Authorizations​

bearerAuth
Type
HTTP (bearer)

Parameters​

Path Parameters

waveTimeId*

Id of wave time to return

Type
integer
Required
Format
"int64"

Responses​

Playground​

Authorization
Variables
Key
Value

Samples​


Returns the given wave times for the given event.​

GET
/api/v2/wave-time/event/{eventId}

Returns the given wave time for the given event.

Authorizations​

bearerAuth
Type
HTTP (bearer)

Parameters​

Path Parameters

eventId*

Id of event to find wave times for

Type
integer
Required
Format
"int64"

Query Parameters

_include

Adds additional details to the results. Supports the following values: types - Include ticket type ids.

Type
string

Responses​

Playground​

Authorization
Variables
Key
Value

Samples​


Returns the given wave times for the given ticket type.​

GET
/api/v2/wave-time/ticket-type/{typeId}

Returns the given wave time for the given ticket type.

Authorizations​

bearerAuth
Type
HTTP (bearer)

Parameters​

Path Parameters

typeId*

Id of ticket type to find wave times for

Type
integer
Required
Format
"int64"

Query Parameters

_include

Adds additional details to the results. Supports the following values: types - Include ticket type ids.

Type
string

Responses​

Playground​

Authorization
Variables
Key
Value

Samples​


Delete a wave time​

DELETE
/api/v2/events/{eventId}/wave-times/{id}

Delete a wave time

Authorizations​

bearerAuth
Type
HTTP (bearer)

Parameters​

Path Parameters

eventId*

Event Id

Type
integer
Required
Format
"int64"
id*

Wave Time Id

Type
integer
Required
Format
"int64"

Responses​

Wave time deleted successfully

Playground​

Authorization
Variables
Key
Value

Samples​


Update a wave time​

PATCH
/api/v2/events/{eventId}/wave-times/{id}

Update an existing wave time

Authorizations​

bearerAuth
Type
HTTP (bearer)

Parameters​

Path Parameters

eventId*

Event Id

Type
integer
Required
Format
"int64"
id*

Wave Time Id

Type
integer
Required
Format
"int64"

Request Body​

application/json
JSON
"string"

Responses​

Updated wave time object

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

Playground​

Authorization
Variables
Key
Value
Body

Samples​


Powered by VitePress OpenAPI