Where to find documentation of all available options for the $expand api param of the assessments endpoint
I'm trying to use this api: https://learn.microsoft.com/en-us/rest/api/defenderforcloud/assessments/list?view=rest-defenderforcloud-2020-01-01&tabs=HTTP
Even though not documented in the linked page, the $expand
param is supported (this is documented in the related Get request documentation: https://learn.microsoft.com/en-us/rest/api/defenderforcloud/assessments/get?view=rest-defenderforcloud-2020-01-01&tabs=HTTP)
The Get documentation seems to indicate that only metadata
and link
are supported values to the expand param: https://learn.microsoft.com/en-us/rest/api/defenderforcloud/assessments/get?view=rest-defenderforcloud-2020-01-01&tabs=HTTP#expandenum
However, I also found this answer which mentions statusEvaluationDates
. Tested and it also works: https://learn.microsoft.com/en-us/answers/questions/585183/how-to-filter-unhealthy-resources-through-assessme
My question is - is there a place where all available values to the $expand
param are documented? I'm trying to get as much information as possible about assessments and related resources without having to execute too many queries.