August 19, 2026
· 4 min read
All waiver endpoints now return a created_datetime field in their responses, providing timestamp information about when each waiver was originally created. This enhancement applies uniformly across list, retrieve, create, update, and archive operations, giving API consumers consistent access to waiver creation timestamps for auditing and chronological tracking purposes.
- GET /waivers – Each waiver in the results now includes its creation timestamp, enabling chronological sorting and filtering of waivers
- POST /waivers – Newly created waivers now return their creation timestamp in the response
- GET /waivers/{id} – Waiver retrieval now includes the creation timestamp for audit and tracking purposes
- PATCH /waivers/{id} – Partial updates now return the waiver's original creation timestamp in the response
- PUT /waivers/{id} – Full updates now return the waiver's original creation timestamp in the response
- POST /waivers/{id}/archive – Archiving a waiver now returns its creation timestamp for record-keeping
- POST /waivers/{id}/archive-and-copy – Archive-and-copy operations now include the creation timestamp for both the archived waiver and its copy
GET /waivers
- added the required property
results/items/created_datetimeto the response with the200status (media type: application/json)
POST /waivers
- added the required property
created_datetimeto the response with the201status (media type: application/json)
GET /waivers/{id}
- added the required property
created_datetimeto the response with the200status (media type: application/json)
PATCH /waivers/{id}
- added the required property
created_datetimeto the response with the200status (media type: application/json)
PUT /waivers/{id}
- added the required property
created_datetimeto the response with the200status (media type: application/json)
POST /waivers/{id}/archive
- added the required property
created_datetimeto the response with the200status (media type: application/json)
POST /waivers/{id}/archive-and-copy
- added the required property
waiver/allOf[subschema #1: WaiverRead]/created_datetimeto the response with the201status (media type: application/json) - added the required property
waiver/allOf[subschema #1: WaiverRead]/created_datetimeto the response with the202status (media type: application/json)