Post Bootstrapping Intent Polygon API
Request Object to Create a New Bootstrapping Intent for Polygon
Parameters
network: string
Allowed values:mainnet,goerli,prater
Required: Yeswallet_address: string
Format:^0x[a-fA-F0-9]{40}$
Description: Hex-encoded Ethereum account or smart contract address.
Required: Yestoken_type: string
Defaults toPOL
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
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