Skip to main content

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_datetime to the response with the 200 status (media type: application/json)
View updated docs

POST /waivers

  • added the required property created_datetime to the response with the 201 status (media type: application/json)
View updated docs

GET /waivers/{id}

  • added the required property created_datetime to the response with the 200 status (media type: application/json)
View updated docs

PATCH /waivers/{id}

  • added the required property created_datetime to the response with the 200 status (media type: application/json)
View updated docs

PUT /waivers/{id}

  • added the required property created_datetime to the response with the 200 status (media type: application/json)
View updated docs

POST /waivers/{id}/archive

  • added the required property created_datetime to the response with the 200 status (media type: application/json)
View updated docs

POST /waivers/{id}/archive-and-copy

  • added the required property waiver/allOf[subschema #1: WaiverRead]/created_datetime to the response with the 201 status (media type: application/json)
  • added the required property waiver/allOf[subschema #1: WaiverRead]/created_datetime to the response with the 202 status (media type: application/json)
View updated docs