Website logo
⌘K
API quickstart
Welcome
Forming API requests
Response status codes
Rate-limiting & pagination
How data is structured in Brella
A note on external_id fields
Authentication & API keys
Changelog
Events
Invites
Attendees
RSVP & Session check-in
Get all RSVPs by attendee id
Get all RSVPs by timeslot id
Create RSVP for timeslot
Delete RSVP from timeslot
Sponsors
Speakers
Schedule
Statistics & analytics
Get all meetings & chats by attendee id (cloned)
Get meeting or chat by id
Get tracking sessions by attendee id
Get tracking session slices by attendee id
Webhooks
Docs powered by Archbee
RSVP & Session check-in

Delete RSVP from timeslot

2min
Delete an RSVP from a timeslot
DELETE
Params
Path Params
{organizationId}
required
Number
The id of the Brella organization you are trying to retrieve data from
{eventId}
required
Number
The id of the Brella event you are trying to retrieve data from
Header Parameters
Brella-API-Access-Token
required
String
Your unique Brella API key
Accept
required
String
application/vnd.brella.v4+json
Content-Type
required
String
application/json
Curl
curl --location -g --request POST 'https://api.brella.io/api/integration/organizations/{organizationId}/events/{eventId}/invites/' \
--header 'Brella-API-Access-Token: String' \
--header 'Accept: application/vnd.brella.v4+json' \
--header 'Content-Type: application/json'\
--data '{
{
   "timeslot_id": {timeslotId},
   "attendee_id": {attendeeId}
}
}'
Responses
200
{
    "data": {
        "id": "5585",
        "type": "attendance-registration",
        "attributes": {
            "checked-in-at": null
        },
        "relationships": {
            "timeslot": {
                "data": {
                    "id": "17516",
                    "type": "timeslot"
                }
            },
            "user": {
                "data": {
                    "id": "1071272",
                    "type": "user"
                }
            }
        }
    }
}


REQUEST BODY

{ { "timeslot_id": {timeslotId}, "attendee_id": {attendeeId} } }

Required attributes:

  • timeslot_id (Number)
  • attendee_id (Number)

Notes:

  • The timeslot_id and attendee_id can alternatively be passed as path parameters in the URL (instead of in the body).



Updated 16 Nov 2023
Did this page help you?
PREVIOUS
Create RSVP for timeslot
NEXT
List all sponsors
Docs powered by Archbee
TABLE OF CONTENTS
DELETE
Delete RSVP from timeslot
Docs powered by Archbee