/boards/:boardId/guests

API Request to Add Guests to a Board

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

Request

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

Parameters

Example Response

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