Skip to content

Get waivers​

GET
/api/v2/waivers

Returns a list of waivers

Authorizations​

bearerAuth
Type
HTTP (bearer)

Parameters​

Query Parameters

organizerId

Filter by organizer ID

Type
integer
Format
"int64"
eventId

Filter by event ID

Type
integer
Format
"int64"

Responses​

Waiver list

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

Playground​

Authorization
Variables
Key
Value

Samples​


Create a new waiver​

POST
/api/v2/waivers

Create waiver

Authorizations​

bearerAuth
Type
HTTP (bearer)

Request Body​

application/json
JSON
"string"

Responses​

Waiver created

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

Playground​

Authorization
Body

Samples​


Get waiver by ID​

GET
/api/v2/waivers/{id}

Returns a single waiver

Authorizations​

bearerAuth
Type
HTTP (bearer)

Parameters​

Path Parameters

id*

Waiver Id

Type
integer
Required
Format
"int64"

Responses​

Waiver object

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

Playground​

Authorization
Variables
Key
Value

Samples​


Delete a waiver​

DELETE
/api/v2/waivers/{id}

Delete a waiver

Authorizations​

bearerAuth
Type
HTTP (bearer)

Parameters​

Path Parameters

id*

ID of the waiver to delete

Type
integer
Required
Format
"int64"

Responses​

Waiver deleted successfully

Playground​

Authorization
Variables
Key
Value

Samples​


Update a waiver​

PATCH
/api/v2/waivers/{id}

Update an existing Waiver

Authorizations​

bearerAuth
Type
HTTP (bearer)

Parameters​

Path Parameters

id*

ID of the waiver to update

Type
integer
Required
Format
"int64"

Request Body​

application/json
JSON
"string"

Responses​

Waiver updated

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

Playground​

Authorization
Variables
Key
Value
Body

Samples​


Delete multiple waivers​

POST
/api/v2/waivers/bulk-delete

Deletes multiple waivers

Authorizations​

bearerAuth
Type
HTTP (bearer)

Request Body​

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

Responses​

Waivers deleted successfully

Playground​

Authorization
Body

Samples​


Powered by VitePress OpenAPI