# Request Object to Create a New Bootstrapping Intent for Polygon

### Parameters

- **network**: string  
  Allowed values: `mainnet`, `goerli`, `prater`  
  Required: Yes

- **wallet_address**: string  
  Format: `^0x[a-fA-F0-9]{40}$`  
  Description: Hex-encoded Ethereum [account or smart contract address](https://ethereum.org/en/developers/docs/accounts/).  
  Required: Yes

- **token_type**: string  
  Defaults to `POL`  
  Allowed values: `MATIC`, `POL`

# Responses

- **200**: Bootstrapping intent created  
- **400**: Invalid request.  
- **401**: Header 'X-API-Key' missing.  
- **500**: Internal server error.

# Example cURL Request

```bash
curl --request POST \
     --url https://svc.blockdaemon.com/boss/v1/polygon/mainnet/bootstrapping-intents \
     --header 'accept: application/json' \
     --header 'content-type: application/json' \
     --data '{"token_type":"POL"}'
```

# Example Responses

- **200**
- **400**
- **401**
- **500**
