Skip to content

Latest commit

 

History

History
77 lines (55 loc) · 2.46 KB

dynamics_usergroupmember_update.md

File metadata and controls

77 lines (55 loc) · 2.46 KB
title description author ms.topic ms.devlang ms.date ms.author ms.reviewer
Update userGroupMember
Updates an user group member object in Dynamics 365 Business Central.
SusanneWindfeldPedersen
reference
al
05/31/2024
solsen
solsen

Update userGroupMember

Updates the properties of an user group member object for [!INCLUDEd365fin_long_md].

HTTP request

Replace the URL prefix for [!INCLUDE prod_short] depending on environment following the guideline.

PATCH /microsoft/automation/v2.0/companies({companyId})/users({userSecurityId})/userGroupMembers({userGroupMemberId})

Request headers

Header Value
Authorization Bearer {token}. Required.
Content-Type application/json
If-Match Required. When this request header is included and the eTag provided does not match the current tag on the userGroupMember, the user group member will not be updated.

Request body

In the request body, supply the values for relevant fields that should be updated. Existing properties that are not included in the request body will maintain their previous values or be recalculated based on changes to other property values. For best performance you shouldn't include existing values that haven't changed.

Response

If successful, this method returns a 200 OK response code and an updated **userGroupMember ** object in the response body.

Example

Request

Here is an example of the request.

PATCH https://api.businesscentral.dynamics.com/v2.0/{environment name}/api/microsoft/automation/v2.0/companies({companyId})/users({userSecurityId})/userGroupMembers({userGroupMemberId})

Content-type: application/json
{
    "displayName": "YourDisplayName"
}

Response Here is an example of the response.

HTTP/1.1 200 OK
Content-type: application/json
{
    "id": "d38a92e2-9d74-eb11-bb5c-00155df3a615",
    "code": "D365 BUS PREMIUM",
    "userSecurityId": "7ae30772-481f-4895-a042-98f36e280680",
    "companyName": "CRONUS USA, Inc.",
    "displayName": "YourDisplayName"
}

See Also

Tips for working with the APIs
userGroupMember