microsoft/MSRC-Microsoft-Security-Updates-API

/v3.0/cvrf/<ID> returns xml not json

ByamB4 opened this issue · 2 comments

When using v2 endpoint https://api.msrc.microsoft.com/cvrf/v3.0/cvrf/${lastItem["ID"]} it returns list of json data of month. But in newer version of endpoint only returns xml data. And provided swagger there is no option to select json and xml. How do I get json data.

For example:

  • https://api.msrc.microsoft.com/cvrf/v3.0/cvrf/2024-May

You can control the returned format using Accept HTTP header. By default it returns XML, but if you specify header as Accept: application/json you should get a response in a JSON format.

Damn i'm so noob, thanks