# `Grizzly.ZWave.Commands.MultiChannelAssociationSetRemove`
[🔗](https://github.com/smartrent/grizzly/blob/v9.1.4/lib/grizzly/zwave/commands/multi_channel_association_set_remove.ex#L1)

This command is used to request that one or more destinations are added to a given association group.
The destinations MAY be a mix of NodeID destinations and End Point destinations.

Params:

  * `:grouping_identifier` - the association grouping identifier (required)
  * `:nodes` - list of nodes to add the grouping identifier (required)
  * `:node_endpoints` - Endpoints of multichannel nodes

# `param`

```elixir
@type param() ::
  {:grouping_identifier, byte()}
  | {:nodes, [Grizzly.ZWave.node_id()]}
  | {:node_endpoints,
     [Grizzly.ZWave.CommandClasses.MultiChannelAssociation.node_endpoint()]}
```

---

*Consult [api-reference.md](api-reference.md) for complete listing*
