Microsoft Security | Microsoft Graph
An API that connects multiple Microsoft services, enabling data access and automation across platforms
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
I'm using an API to retrieve search results along with item metadata. But I'm encountering an issue where results from a custom column aren't being returned.
I've created a managed property in the search configuration, but it doesn't seem to be working as intended.
Could you please assist me in resolving this?
Managed Property:
Search Results
API: https://graph.microsoft.com/v1.0/search/query
Request Body:
{
"requests": [
{
"entityTypes": [
"driveItem"
],
"query": {
"queryString": "Test"
},
"fields": [
"title",
"path",
"ListItemID",
"taSPCNumber"
"SPCNumber"
]
}
]
}