Hi @Dustin
I see that you have added the 'azure-api-management' tag and the issue is not related to APIM service.
But looking into the document for the Resource - List API the you can use the $expand
in the query parameter with and specify the property that you want to retrieves all with the default properties.
As you want the GenericResourceExpanded.properties then you can specify the property name listed under GenericResourceExpanded in the $expand query parameter
The Request URL will be :
https://management.azure.com/subscriptions/{subscriptionID}/resources?$expand=createdTime,changedTime,provisioningState&api-version=2021-04-01
The above will return the createdTime, changedTime and provisioningState under the GenericResourceExpanded object.
Please 'Accept as answer' and ‘Upvote’ if it helped so that it can help others in the community looking for help on similar topics.