-
Notifications
You must be signed in to change notification settings - Fork 327
Fix 2.6.1 Request example #407
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: public
Are you sure you want to change the base?
Conversation
Changed contoso.com to microsoft.com so the example works ;)
|
Learn Build status updates of commit 3134103: ✅ Validation status: passed
For more details, please refer to the build report. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull request overview
This PR updates the API endpoint URL in section 2.6.1 of the software vulnerabilities assessment documentation from the non-functional api.security.contoso.com to api-us.securitycenter.microsoft.com.
Changes:
- Updated the request example URL for the "Export software vulnerabilities assessment via files" endpoint to use a functional Microsoft domain instead of the placeholder contoso.com domain
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
|
|
||
| ```http | ||
| GET https://api.security.contoso.com/api/machines/SoftwareVulnerabilitiesExport | ||
| GET https://api-us.securitycenter.microsoft.com/api/machines/SoftwareVulnerabilitiesExport |
Copilot
AI
Jan 15, 2026
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The endpoint URL uses a US-specific regional domain (api-us.securitycenter.microsoft.com) which is inconsistent with the rest of this document and the broader API documentation. Section 1.6.1 (line 111) and section 3.6.1 (line 413) both use https://api.security.microsoft.com, and this is the documented standard endpoint per the official API documentation (exposed-apis-list.md line 37). Additionally, the response example in section 2.6.2 (line 305) uses api.security.microsoft.com in the @odata.context field, which would be inconsistent with this request. For consistency and to follow the documented standard, this should be changed to https://api.security.microsoft.com/api/machines/SoftwareVulnerabilitiesExport.
| GET https://api-us.securitycenter.microsoft.com/api/machines/SoftwareVulnerabilitiesExport | |
| GET https://api.security.microsoft.com/api/machines/SoftwareVulnerabilitiesExport |
|
Learn Build status updates of commit f72bb1d: ✅ Validation status: passed
For more details, please refer to the build report. |
Changed contoso.com to microsoft.com so the example works ;)