我想知道在通过CRM Web API创建记录时,是否有一种方法可以发送记录名称而不是记录guid。
例如,当填充account类型的查找字段时,我将编写"new_account@odata.bind" : "/accounts('xxxxxxxx-xxxx-xxxx')"
有没有办法发送这样的名字
"new_account@data.bind" : "/accounts('Account Name')"
?
发布于 2021-05-24 13:40:41
我们必须使用记录主键GUID或Alternate key。
代码片段将如下所示:"parentcustomerid_account@odata.bind" : "/accounts(blg_alternatekey='blg12345')"
https://stackoverflow.com/questions/67669329
复制