If I make a GET request in Sharepoint 2016 Rest API using header accept "application/json;odata.metadata=minimal" in url /_api/web/lists/GetByTitle('Pages')/Fields, and library pages (o other list or library) has a Taxonomy Fields return error.
{
"odata.error": {
"code": "-2147467261, System.ArgumentNullException",
"message": {
"lang": "es-ES",
"value": "Value cannot be null.\r\nParameter name: type"
}
}
if remove Taxonomy Fields, it works perfectly.
if i make the request using accept "application/json;odata=verbose" with a Taxonomy Fields works perfectly too.
Summary:
If i have taxonomy fields odata.metadata=minimal don't work
Best Regards