[Home](./index.md) > [puppeteer](./puppeteer.md) > [Protocol](./puppeteer.protocol.md) > [DOM](./puppeteer.protocol.dom.md) > [MoveToRequest](./puppeteer.protocol.dom.movetorequest.md)
## Protocol.DOM.MoveToRequest interface
Signature:
```typescript
export interface MoveToRequest
```
## Properties
| Property | Type | Description |
| --- | --- | --- |
| [insertBeforeNodeId](./puppeteer.protocol.dom.movetorequest.insertbeforenodeid.md) | [NodeId](./puppeteer.protocol.dom.nodeid.md) | Drop node before this one (if absent, the moved node becomes the last child of targetNodeId
). |
| [nodeId](./puppeteer.protocol.dom.movetorequest.nodeid.md) | [NodeId](./puppeteer.protocol.dom.nodeid.md) | Id of the node to move. |
| [targetNodeId](./puppeteer.protocol.dom.movetorequest.targetnodeid.md) | [NodeId](./puppeteer.protocol.dom.nodeid.md) | Id of the element to drop the moved node into. |