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