调用Update Mgplace CMDLET不起作用
我正在尝试使用cmdlet update-mgplace修补一个
$addProp = @{
floorNumber = 1
capacity = 15
}
Update-MgPlace -PlaceId <myRoomId> -AdditionalProperties $addProp
错误
update-mgplace_updateexpanded:更新请求必须用于租户或室内列表。 aucaractèrec:\ users \ xxxx \ documents \ windowspowershell \ modules \ microsoft.graph.calendar \ 1.9.0 \ exports \ v1.0 \ proxycmdletdletdefinitions.ps1:17598:17598:23:23:23:23 $ scriptcmd = {&amp; $ wrappedcmd @psboundParameters}
categoryInfo:invalidoperation :( {{placeid = c62 ... oftgraphplace}:&lt;&gt;&gt; f__ anononymoustype872)[update-mgplace_update expanded],restexception1 完全QualifiedErrid:Microsoft.graph.powershell.cmdlets.updatemgplace_updateExpanded
带有同一管理员帐户并需要权限,我使用Graph Explorer成功地更新了该位置:
- endpoint:patch https://graph.microsoft.com/v1.0/places/
- 标题:content-type = application/json
- 主体:
{
"@odata.type": "#microsoft.graph.room",
"capacity": "15",
"floorNumber": "1"
}
I'm trying to patch a Place using the cmdlet Update-MgPlace
$addProp = @{
floorNumber = 1
capacity = 15
}
Update-MgPlace -PlaceId <myRoomId> -AdditionalProperties $addProp
Getting this error
Update-MgPlace_UpdateExpanded : Update request has to be for a tenant Room or RoomList.
Au caractère C:\Users\XXXX\Documents\WindowsPowerShell\Modules\Microsoft.Graph.Calendar\1.9.0\exports\v1.0\ProxyCmdletDefinitions.ps1:17598 : 23
$scriptCmd = {& $wrappedCmd @PSBoundParameters}CategoryInfo : InvalidOperation : ({ PlaceId = c62...oftGraphPlace }:<>f__AnonymousType872) [Update-MgPlace_UpdateExpanded], RestException1 FullyQualifiedErrorId : Microsoft.Graph.PowerShell.Cmdlets.UpdateMgPlace_UpdateExpanded
With the same administrator account and required permissions, I sucessfully update the Place using Graph Explorer :
- EndPoint : PATCH https://graph.microsoft.com/v1.0/places/
- Headers : Content-type = Application/JSON
- Body :
{
"@odata.type": "#microsoft.graph.room",
"capacity": "15",
"floorNumber": "1"
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要指定
-bodyParameter
而不是-additionalProperties
。在请求主体中,使用
@odata.type
指定位置类型。You need to specify
-BodyParameter
instead of-AdditionalProperties
.In the request body, use
@odata.type
to specify the type of place.