Attendees allows you to CRUD the data related to who is attending a particular booking. Useful if you want to create events where many people are invited.
Find all attendees
GET
/attendees
Create a new attendee
POST
/attendees
Find an attendee
GET
/attendees/{id}
Edit an existing attendee
PATCH
/attendees/{id}
Remove an existing attendee
DELETE
/attendees/{id}