Create Room
Create a new room within a block. Room numbers must be unique within the same block.
Block ID the room belongs to
- Room numbers must be unique within the same block
- Block must exist and belong to the same instance
Example Request
curl -X POST https://api.checkpoint.b-digital.uk/api/v1/rooms \
-H "X-API-Key: YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"room_number": "101",
"block_id": "block123",
"instance_id": "se8SajpJDWUwrEmhElLF",
"name": "Room 101",
"capacity": 4
}'