如何使用网络获取CRM 2016中实体的审计日志API
How to get the audit log of an entity in CRM 2016 using a web API
我在 中使用 Microsoft dynamics CRM 2016 web API 进行了大量研究以获取特定实体的更改日志,但这没有用,我找不到这样做的方法。
我刚找到 RetrieveAuditPartitionLis
的 return 分区集合,响应:
"AuditPartitionDetailCollection": [
{
"PartitionNumber": 1,
"StartDate": "2014-07-01T00:00:00Z",
"EndDate": "2014-09-30T19:59:59.997-04:00",
"Size": 9
},
{
"PartitionNumber": 2,
"StartDate": "2014-10-01T00:00:00Z",
"EndDate": "2014-12-31T18:59:59.997-05:00",
"Size": 8
},
.....
我需要一种方法来获取特定实体的日志,例如 /accounts/audit 端点。如何实现?
通过使用 audits
实体。
终点 : organization_domain/api/data/v8.0/audits
我在 中使用 Microsoft dynamics CRM 2016 web API 进行了大量研究以获取特定实体的更改日志,但这没有用,我找不到这样做的方法。
我刚找到 RetrieveAuditPartitionLis
的 return 分区集合,响应:
"AuditPartitionDetailCollection": [
{
"PartitionNumber": 1,
"StartDate": "2014-07-01T00:00:00Z",
"EndDate": "2014-09-30T19:59:59.997-04:00",
"Size": 9
},
{
"PartitionNumber": 2,
"StartDate": "2014-10-01T00:00:00Z",
"EndDate": "2014-12-31T18:59:59.997-05:00",
"Size": 8
},
.....
我需要一种方法来获取特定实体的日志,例如 /accounts/audit 端点。如何实现?
通过使用 audits
实体。
终点 : organization_domain/api/data/v8.0/audits