简体   繁体   English

Microsoft Dynamics CRM中活动的EntityLogicalName是什么

[英]What is the EntityLogicalName for activities in Microsoft Dynamics CRM

I've been able to successfully fetch items like leads, opportunities, and contacts from the dynamics API, but I've been unable to figure out how to fetch any kind of activity objects. 我已经能够从Dynamics API成功获取线索,商机和联系人之类的项目,但是我一直无法弄清楚如何获取任何类型的活动对象。 I'm making a request that looks like this: 我正在发出如下请求:

POST http://myAddress/myDomain/RetrieveMultiple

**headers**
Content-Type: application/json
User-Agent: our user agent

**json**
{
  "Credential": {
    "Domain": "thedomain",
    "UserId": "theuserid",
    "Password": "thepass",
    "Version": "2016",
    "ConnectionType": "1"
  },
  "EntityLogicalName": "contact",
  "DateCriteria": "2000-01-01T00:00:00Z",
  "DateFilterName": "modifiedon",
  "Operator": ">=",
  "Order": "asc",
  "MaxItems": 100,
  "pageNumber": 1
}

When I change the EntityLogicalName to "activitypointer", "task", "appointment", and anything else I can think of I get back an error that says "Invalid Entity name" 当我将EntityLogicalName更改为“ activitypointer”,“ task”,“ appointment”等时,我回想起一个错误,提示“ Invalid Entity name”

Activities is an abstract entity, therefore you'll need to query the concrete ones like: 活动是一个抽象实体,因此您需要查询具体的实体,例如:

"email", "phonecall", "task", etc... “电子邮件”,“电话”,“任务”等。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 使用Node.js以编程方式将Web资源上载到Microsoft Dynamics CRM - Upload web resource to Microsoft Dynamics CRM programmatically with Node.js 如何使用javascript(node.js)从Microsoft Dynamics CRM接收Webhooks? - How to receive webhooks from Microsoft's dynamics CRM using javascript(node.js)? 在Dynamics CRM中发送通知 - Send notifications in Dynamics CRM 提供令牌的 Dynamics CRM 401 - Dynamics CRM 401 with token provided Dynamics CRM Online + Node.js(请求永远运行/挂起) - Dynamics CRM Online + Node.js (request runns forever /hangs) 如何将Dynamics CRM的组织数据服务与Node.js应用程序连接 - How to connect organization data service of dynamics crm with node.js application 如何从Web App(节点/ Express)查询本地Dynamics CRM - How to query an on-premises Dynamics CRM from a Web App (Node/Express) 我无法从Dynamics CRM解析HTTP响应正文,它始终以Unicode字符形式返回 - I am unable to parse an HTTP response body from Dynamics CRM, it keeps returning as unicode characters 来自 Node.js 的 Microsoft Dynamics NAV '18 Web 服务的 NTLM 身份验证失败 - NTLM authentication for Microsoft Dynamics NAV '18 web service from Node.js fails Microsoft Bot Framework中的“自定义提示”是什么? - What are “custom prompts” in the Microsoft Bot Framework?
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM