updateGroup

updateGroup

Function
updateGroup(requestOptionsIUpdateGroupOptions): Promise<{ groupId: string; success: boolean }>

Update the properties of a group. See the REST Documentation for more information.

Use dark colors for code blocksCopy
1
2
3
4
5
6
import { updateGroup } from '@esri/arcgis-rest-portal';

updateGroup({
  group: { id: "fgr344", title: "new" }
})
  .then(response)
Parameters
ParameterTypeNotes
requestOptions
IUpdateGroupOptions

Options for the request, including the group

Returns 
Promise<{ groupId: string; success: boolean }>

A Promise that will resolve with the success/failure status of the request

Your browser is no longer supported. Please upgrade your browser for the best experience. See our browser deprecation post for more details.