Skip to content

REST API v2. Authenticate with a Bearer JWT in the Authorization header unless an endpoint is marked public.

Servers​

https://v2-staging.tscheckout.comCurrent host

People Waiver​

People waiver report and email endpoints


Get people waiver report​

GET
/api/v2/people-waiver

Returns a paginated list of tickets with waiver information. Supports filtering by signed/unsigned status, event IDs, free-text _search, and optional sort_by / sort_order.

Authorizations​

bearerAuth
Type
HTTP (bearer)

Parameters​

Query Parameters

sort_by

Column to sort by (matches response field names). Defaults to ticketId.

Type
string
Valid values
"ticketId""orderId""eventId""eventTitle""purchaseDate""firstName""lastName""billingFirstName""billingLastName""emailAddress"
Default
"ticketId"
sort_order

Sort direction. Defaults to desc (e.g. newest ticketId first).

Type
string
Valid values
"asc""desc"
Default
"desc"
eventIds

Comma-separated event IDs to filter by

Type
string
Example"1,2,3"
signed

Omit to return all tickets with waivers. true = signed only, false = unsigned only

Type
boolean
Examplefalse

Responses​

People waiver list

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

Playground​

Authorization
Variables
Key
Value

Samples​


Send waiver reminder emails​

GET
/api/v2/people-waiver/send-email

Triggers sending of waiver reminder emails to people with unsigned waivers. Processes in batches and skips tickets that were emailed within the last 24 hours.

Authorizations​

bearerAuth
Type
HTTP (bearer)

Parameters​

Query Parameters

eventIds*

Comma-separated event IDs to filter by (required)

Type
string
Required
Example"1,2,3"
daysUnsigned

Only include tickets purchased at least this many days ago. Omit to include all.

Type
integer
Example7
Minimum
0
offset

Batch offset for pagination (returned as newOffset in previous response)

Type
integer
Example0
Minimum
0

Responses​

Email batch result

application/json
JSON
"string"

Playground​

Authorization
Variables
Key
Value

Samples​


Powered by VitePress OpenAPI