docs: document namespace prefix syntax for endpoint references#3679
Merged
Conversation
Co-Authored-By: Fern Support <info@buildwithfern.com>
Contributor
Author
🤖 Devin AI EngineerI'll be helping with this pull request! Here's what you should know: ✅ I will automatically:
Note: I can only respond to comments from users who have write access to this repository. ⚙️ Control Options:
|
Contributor
devalog
approved these changes
Feb 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
Documents the
namespace::METHOD /pathsyntax for endpoint references when using namespaces (multiple API specs). This is relevant wherever endpoints are specified inMETHOD /pathformat — for example,payments::POST /oauth/tokeninstead ofPOST /oauth/token.Files changed (10):
auth.mdx): Added<Tip>callout in the OAuth client credentials accordionoauth-get-token.mdx,oauth-refresh-token.mdx): UpdatedendpointParamField descriptionscustomize-api-ref.mdx): Added namespace example in the OpenAPI "Ordering top-level sections" tabendpoint-request-snippet.mdx,endpoint-response-snippet.mdx,endpoint-schema-snippet.mdx,runnable-endpoint.mdx): UpdatedendpointParamField descriptionsopenapi-specs.mdx): Updatedsettings.filter.endpointsParamField descriptionproject-structure.mdx): Added link from "Add namespaces" step to thegenerators.ymlreference for configuration detailsAdditionally,
endpoint-schema-snippet.mdxwas missing a Properties section entirely — one was added withendpointandselectorparam documentation alongside the namespace info.Updates since last revision
generators.yml#namespacefor configuration details.payments(previously a mix ofiamandmyapi) for consistency with the project-structure page'spayments-apiexample.Review & Testing Checklist for Human
#combined-sdks-from-multiple-apisanchor resolves correctly on the project-structure page. All namespace links across 9 files now point to this anchor. If the heading slug doesn't match, every link will be broken.#namespaceanchor exists on the generators-yml reference page (/learn/sdks/reference/generators-yml#namespace). The project-structure page now links there from the "Add namespaces" step.endpoint-schema-snippet.mdx— this is additive beyond just namespace docs. Confirm theselectorvalues listed (request,request.path,request.query,request.body,response,response.body) are accurate and complete.paymentsis used consistently as the example namespace name across all changed files. Previously a mix ofiamandmyapiwas used; verify no stale references remain.Suggested test plan: Open the preview deployment, navigate to the OAuth auth config page, click the namespace link in the Tip callout, and verify it lands on the "Combined SDKs from multiple APIs" section of the project-structure page. From there, verify the "Add namespaces" step links to the generators.yml reference. Repeat for one component doc page (e.g.,
endpoint-request-snippet). Grep the diff foriam::andmyapi::to confirm no stale namespace names remain.Notes
oauth-get-token.mdx,oauth-refresh-token.mdx) had missing trailing newlines which were incidentally fixed.