userGroupMember resource type

Represents an user group member in Dynamics 365 Business Central.

Note

For information about enabling APIs for Business Central see Enabling the APIs for Dynamics 365 Business Central.

Methods

Method Return Type Description
GET userGroupMember userGroupMember Gets a user group member object.
DELETE userGroupMember none Deletes a user group member object.
POST userGroupMember userGroupMember Creates a user group member object.
PATCH userGroupMember userGroupMember Updates a user group member object.
Navigation Return Type Description
user user Gets the user of the userGroupMember.
userGroup userGroup Gets the usergroup of the userGroupMember.
automationCompany automationCompany Gets the automationcompany of the userGroupMember.

Properties

Property Type Description
id GUID The unique ID of the user group member.
userSecurityId GUID The unique ID of the user security.
code string The code of the user group member.
displayName string Specifies the user group member's name. This name will appear on all sales documents for the user group member.
companyName string The name of the company.

JSON representation

Here is a JSON representation of the userGroupMember resource.

{
    "id": "GUID",
    "userSecurityId": "GUID",
    "code": "string",
    "displayName": "string",
    "companyName": "string"
}

See Also

GET userGroupMember
DELETE userGroupMember
POST userGroupMember
PATCH userGroupMember