gpt4 book ai didi

dynamics-crm - 操作 msdyn_BookingResource 和 msdyn_BookingResourceRequirement 的 Web Api 查询

转载 作者:行者123 更新时间:2023-12-04 17:34:59 26 4
gpt4 key购买 nike

来自网络 API 引用 here

我尝试查询 api 但没有成功,特别是参数 Schedules 被声明为字符串类型。

1.) 对于 msdyn_BookingResource

POST: https://bhaud365dev.crm6.dynamics.com/api/data/v9.0/msdyn_BookingResource

BODY:
{"ResourceId":[GUID],"BookingStatusId":[GUID],"BookingMethod":690970003,"BookingType":1,"Schedules":"[{\"StartDateTime\":\"2019-07-15T00:00:00Z\",\"EndDateTime\":\"2019-07-19T00:00:00Z\"}]","Timeframe":5}

RESPONSE: {
"error": {
"code": "0x80040224",
"message": "The added or subtracted value results in an un-representable DateTime.\r\nParameter name: value",

2.) 对于 msdyn_BookingResourceRequirement

POST: https://bhaud365dev.crm6.dynamics.com/api/data/v9.1/msdyn_resourcerequirements([GUID])/Microsoft.Dynamics.CRM.msdyn_BookingResourceRequirement

BODY: {
"BookingMethod": 690970003,
"BookingStatusId": [GUID],
"BookingType": 1,
"EndDateTime": "2019-07-19T07:29:00Z",
"ResourceId": [GUID],
"StartDateTime": "2019-07-15T22:00:00Z"
}

RESPONSE: {
"error": {
"code": "0x80040224",
"message": "Object reference not set to an instance of an object.",

我能够通过 api 查询函数,但是对于我被卡住的操作,我不确定我做错了什么。非常感谢任何提示或示例。

顺便说一句。在 CRM REST BUILDER v2.6.0.0 中也尝试了上述查询同样的错误响应。

最佳答案

我花了一些时间,遇到了同样奇怪的错误,然后我意识到它们是仅限内部使用 操作。它不适用于我们的使用,并且高度不受支持,因为当 Microsoft 计划更改时它们往往会在未来版本中中断。

enter image description here

借助以下 Web API 请求,我能够成功创建可预订资源预订。

var entity = {};
entity["Resource@odata.bind"] = "/bookableresources(7B203E2F-F2FB-E911-A813-000D3A5A1BF8)";
entity["BookingStatus@odata.bind"] = "/bookingstatuses(026BDCEF-9257-4C10-9E49-C92539B883D6)";
entity["endtime"] = "2019-11-07T21:00:00Z";
entity["starttime"] = "2019-11-07T20:00:00Z"
entity.bookingtype = 1;
entity.msdyn_bookingmethod = 690970003;

Xrm.WebApi.online.createRecord("bookableresourcebooking", entity).then(
function success(result) {
var newEntityId = result.id;
},
function(error) {
Xrm.Utility.alertDialog(error.message);
}
);

关于dynamics-crm - 操作 msdyn_BookingResource 和 msdyn_BookingResourceRequirement 的 Web Api 查询,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57034222/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com