I am using the above http request to get a column's metadata that is working fine -
GET https://xxx.crm4.dynamics.com/api/data/v9.2/EntityDefinitions(LogicalName='my_table')/Attributes(LogicalName='my_column')
When i am trying to update metadata using the returned json as body from the first request and the http request above -
PUT https://xxx.crm4.dynamics.com/api/data/v9.2/EntityDefinitions(LogicalName='my_table')/Attributes(LogicalName='my_column')
i get the error -
{
"error": {
"code": "0x80040217",
"message": "No rows could be found for Attribute with id xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx if Attribute were published"
}
}
Can anyone help ?