PowerShell SDK 500 Downstream service unavailable

Hi @dominick-miller ,

This error is related to your Search result size.

Try to add in your search body a queryResultFilter by including only the attributes that you need:


{
    "indices": [
        "identities"
    ],
    "query": {
        "query": "yourQUery"
    },
    "queryResultFilter": {
        "includes": [
            "id",
            "displayName"
        ]
    }
}
2 Likes