# Request object to create a new deactivation intent for Binance.

## Parameters

### network
- **Type**: string  
- **Required**: Yes  
- **Allowed Values**: `mainnet`, `testnet`

### delegator_address
- **Type**: string  
- **Required**: Yes  
- **Format**: `^bnb[0-9a-z]+$`  
  
Binance beacon chain address.

### amount
- **Type**: string  
- **Required**: Yes  
- **Format**: `^[1-9]\d+$`  
  
The smallest denomination of Binance Coin (BNB) is called Jager. 1 Jager = 0.00000001 BNB.

### plan_id
- **Type**: string  
  
This feature enables you to stake to validators from the specified plan(s). When no plan id is specified, validators across all plans that match the API route will be available for staking. If it is a shared plan, you can stake to validators on a shared node from the specified plan.

## Responses

- **200**: 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/binance/mainnet/deactivation-intents \
     --header 'accept: application/json' \
     --header 'content-type: application/json'
```

## Example Responses

- status code: `200`  
- status code: `400`  
- status code: `401`  
- status code: `500`

Updated 2 months ago.
