You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The replay-callback request body content type is switched from application/json to multipart/form-data exclusively, and any other content type is now documented as rejected with 415.
Existing integrations that POST a JSON body (e.g. {"callback_url": "..."}) will start failing.
If backward compatibility is expected, the spec should list both application/json and multipart/form-data; otherwise the changelog entry should explicitly mark this as a breaking change
rather than a generic "Updated openapi".
Send the body as `multipart/form-data`. Any other content type is rejected with 415.content:
multipart/form-data:
schema:
$ref: '#/components/schemas/ReplayCallbackRequest'
ReplayCallbackRequest is referenced under multipart/form-data without any encoding section.
For multipart bodies, generators/validators typically need per-property encoding (e.g. contentType: text/plain for scalar fields) to produce correct clients; nested or non-scalar
properties in the schema will serialize ambiguously. Consider adding an explicit encoding block or
confirming the schema contains only flat scalar fields.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
User description
Automated v3 OpenAPI spec update for v3.801.0.
Triggered by Ed Fricker (@beastawakens) - assigned to you in case it needs a manual merge.
PR Type
Documentation, Enhancement
Description
Replay callback body now
multipart/form-dataAdded
415Unsupported Media Type responseReworded error messages from "verification" to "job"
Changelog entry added for
v3.801.0Diagram Walkthrough
File Walkthrough
openapi.yaml
Replay callback switched to multipart with 415 responsespecs/v3/openapi.yaml
application/jsontomultipart/form-data415Unsupported Media Type response with example"verification"
v3-replay-callback.yaml
Update replay callback spec content type and errorsspecs/v3/v3-replay-callback.yaml
multipart/form-data415Unsupported Media Type response definition and exampleCHANGELOG.md
Add v3.801.0 changelog entryCHANGELOG.md
v3.801.0release section dated 2026-08-04openapiandv3-replay-callback