Fix inconsistent URL paths in See Also section of create-a-rest-api.md - #11706
Fix inconsistent URL paths in See Also section of create-a-rest-api.md#11706IT24100161 wants to merge 1 commit into
Conversation
|
No actionable comments were generated in the recent review. 🎉 ℹ️ Recent review info⚙️ Run configurationConfiguration used: Organization UI Review profile: CHILL Plan: Pro Plus Run ID: 📒 Files selected for processing (1)
📝 WalkthroughSummaryUpdated all eight “See Also” links in the REST API creation guide to use the consistent ValidationVerified with a local MkDocs development server. WalkthroughUpdated the REST API creation guide’s “See Also” links for Endpoints, API Security, Rate Limiting, Life Cycle Management, API Monetization, API Visibility, API Documentation, and Custom Properties. Each link now uses the Suggested reviewers: 🚥 Pre-merge checks | ✅ 5✅ Passed checks (5 passed)
✨ Finishing Touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
Purpose
To fix inconsistent URL paths in the "See Also" section of the "Create a REST API" page.
Goals
Ensure consistent URL path naming (
/api-design-manage/) across the entirecreate-a-rest-api.mddocument, eliminating page-level inconsistencies, potential SEO duplicate content issues, and broken links in static site builds/forks.Approach
Updated all 8 links in the See Also section at the bottom of
create-a-rest-api.mdto use{{base_path}}/api-design-manage/instead of{{base_path}}/manage-apis/, bringing them into alignment with the rest of the document.Modified links:
Endpoints->{{base_path}}/api-design-manage/design/endpoints/endpoint-types/API Security->{{base_path}}/api-design-manage/design/api-security/api-authentication/secure-apis-using-oauth2-tokens/Rate Limiting->{{base_path}}/api-design-manage/design/rate-limiting/introducing-throttling-use-cases/Life Cycle Management->{{base_path}}/api-design-manage/design/lifecycle-management/api-lifecycle/API Monetization->{{base_path}}/api-design-manage/design/api-monetization/monetizing-an-api/API Visibility->{{base_path}}/api-design-manage/design/advanced-topics/control-api-visibility-and-subscription-availability-in-developer-portal/API Documentation->{{base_path}}/api-design-manage/design/api-documentation/add-api-documentation/Custom Properties->{{base_path}}/api-design-manage/design/create-api/adding-custom-properties-to-apis/User stories
N/A
Release note
Fixed inconsistent URL paths in the "See Also" section of the "Create a REST API" documentation page.
Documentation
N/A - This PR is a documentation bug fix for
docs-apim.Training
N/A
Certification
N/A - Minor documentation link fix with no impact on certification exams.
Marketing
N/A
Automation tests
Security checks
Samples
N/A
Related PRs
Completes the migration started in PR #10492
Migrations (if applicable)
N/A
Test environment
Verified using local MkDocs dev server (
python -m mkdocs serve).Learning
Identified how client-side routing redirects
/manage-apis/to/api-design-manage/, masking raw source markup path discrepancies in the browser status bar.