Update from code changes: static export API projectId scope - #7016
Open
mintlify[bot] wants to merge 2 commits into
Open
Update from code changes: static export API projectId scope#7016mintlify[bot] wants to merge 2 commits into
mintlify[bot] wants to merge 2 commits into
Conversation
Contributor
Author
|
Preview deployment for your docs. Learn more about Mintlify Previews.
|
Contributor
Author
|
Preview deployment for your docs. Learn more about Mintlify Previews.
💡 Tip: Enable Workflows to automatically generate PRs for you. |
ethanpalm
approved these changes
Aug 19, 2026
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Summary
Realigns the static export API reference with the shipped external API: routes are now scoped by
projectId, the separate bundle-generation endpoint was folded into the job status response, and the flow drops to two steps. See mintlify/server#7479.Changes
static-export-openapi.json(en/es/fr/zh):POST /static-export/{projectId}/jobsandGET /static-export/{projectId}/jobs/{jobId}.POST /static-export/jobs/{jobId}/bundleendpoint and its request/response schemas.domain/version/paths).progressandpageCountfrom the job schema; addedbundleUrl,sizeBytes, andexpiresAton completed jobs.403(entitlement gate),409(one active job per deployment), and429(10 job starts per org per hour).projectId-scoped URLs.api/static-export/generate-bundle.mdx(and translations) and dropped it from the navigation indocs.json,es.json,fr.json,zh.json.openapifrontmatter onstart-job.mdxandget-job-status.mdxin every language to the new paths.Context
Triggered by https://github.com/mintlify/server/pull/7479.
Note
Low Risk
Documentation and OpenAPI-only changes for an enterprise API reference; no runtime code paths in this repo.
Overview
Realigns static export API docs and OpenAPI with the shipped external API (routes scoped by
projectId, bundle download folded into job status).The generate export bundle endpoint and its MDX pages (en/es/fr/zh) are removed; navigation in
docs.jsonand locale JSON files drops that page. Paths becomePOST /static-export/{projectId}/jobsandGET /static-export/{projectId}/jobs/{jobId}in allstatic-export-openapi.jsonvariants.Start job no longer documents a JSON body (
domain,version,paths). Job status is the single place to getbundleUrl,sizeBytes, andexpiresAtwhenstatusiscompleted;progressandpageCountare removed from the schema. OpenAPI adds409(one active job per deployment) and429(10 starts per org per hour).Overview pages and the GitHub Actions example use
PROJECT_ID, project-scoped URLs, and polling that capturesbundleUrlfrom the status response instead of a separate bundle POST.Reviewed by Cursor Bugbot for commit 3149057. Bugbot is set up for automated code reviews on this repo. Configure here.