/boards/:boardId/guests

Board Guests API

To retrieve the list of guests on a specific board, you can use the following cURL command:

curl --request GET \
     --url https://api.air.inc/v1/boards/boardId/guests \
     --header 'accept: application/json'

Request Parameters

Response Format

The response will be in JSON format:

{
  "status": 200,
  "message": "Successful request",
  "data": [
    {
      "id": "guestId",
      "name": "Guest Name",
      "email": "guest@example.com"
    }
  ]
}

Additional Notes