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

Instruct a node to send its Node Information Frame to another node (typically
a controller).

### Params

* seq_number - the sequence number of the network management command (required)
* destination_node_id - the node that should receive the node information frame (required)
* tx_options - the transmission options for the target node to use when sending its NIF (optional)

# `param`

```elixir
@type param() ::
  {:seq_number, Grizzly.seq_number()}
  | {:destination_node_id, Grizzly.node_id()}
  | {:tx_options, [tx_opt()]}
```

# `tx_opt`

```elixir
@type tx_opt() :: :ack | :low_power | :no_route | :explore
```

---

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