### API Request to Add Guests to a Board

To add guests to a specific board, you can use the following API request:

#### Request

```shell
curl --request POST \
     --url https://api.air.inc/v1/boards/{boardId}/guests \
     --header 'accept: application/json' \
     --header 'content-type: application/json'
```

### Parameters
- **boardId**: `(string)` The ID of the board.
- **email**: `(string)` The email of the guest to be added.
- **roleId**: `(string)` The role to assign to the guest.

### Example Response

```json
{
  "status": "200",
  "message": "Guests added successfully",
  "updated": "9 months ago"
}
```
