updateGroup
FunctionupdateGroup(requestOptions: IUpdateGroupOptions): Promise<{ groupId: string; success: boolean }>
Update the properties of a group. See the REST Documentation for more information.
import { updateGroup } from '@esri/arcgis-rest-portal';
updateGroup({
group: { id: "fgr344", title: "new" }
})
.then(response)
Parameters
Parameter | Type | Notes |
---|---|---|
request | 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