I'm using Microsoft dynamics 365 - on premises of my client. Here, I am facing an issue in accessing one of the fields - ownerid
of type owner
.
I am using Web API approach to access the CRM data. When I hit the query in URL, it brings all the data except ownerid
column.
It's field type
is: Simple
Has anyone faced the same issue with WebAPI query approach?
URL Query:
https://baseURL/moves?$select=moveid,ownerid,movenumber&$filter=movenumber%20eq%20%27236659%27
Output:
{
"@odata.context":"https://baseURL/$metadata#moves(moveid,ownerid,movenumber)","value":[
{
"@odata.etag":"W/\"37655223\"","moveid":"4583b2fe-83d9-e611-80c7-369e029457bb","movenumber":"236659"
}
]
}