> ## Documentation Index
> Fetch the complete documentation index at: https://docs.polygon.technology/llms.txt
> Use this file to discover all available pages before exploring further.

# withdrawStart

> The withdrawStart method can be used to initiate the withdraw process which will burn the specified amount of tokenId on polygon chain.

The `withdrawStart` method can be used to initiate the withdraw process which will burn the specified amount of tokenId on polygon chain.

```js theme={null}

const erc1155Token = posClient.erc1155(<child token address>);

const result = await erc1155Token.withdrawStart(<token id>,<amount>);

const txHash = await result.getTransactionHash();

const txReceipt = await result.getReceipt();

```
