Group - Updates a group for a tenant
The ID of the existing tenant under which the group will be updated.
The ID of the group to be updated.
The requested API version
1.0Class for representing update request for group model.
A public property of type string that has both a getter and a setter method, which allows for getting and setting the value of the DisplayName property.
A public property of type string that has both a getter and a setter method, which allows for getting and setting the value of the Description property.
A public property of type guid that has both a getter and a setter method, which allows for getting and setting the value of the GroupId property.
nullSuccess: The group has been successfully updated.
Internal Server Error: An unexpected error occurred or a server timeout.
PUT /tenants/{tenantId}/groups/{groupId} HTTP/1.1
Host:
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 91
{
"displayName": "text",
"description": "text",
"roleId": "123e4567-e89b-12d3-a456-426614174000"
}{
"groupId": "123e4567-e89b-12d3-a456-426614174000",
"tenantId": "123e4567-e89b-12d3-a456-426614174000",
"roleId": "123e4567-e89b-12d3-a456-426614174000",
"displayName": "text",
"description": "text"
}Last updated