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
Invites

Delete invite

1min
Delete an existing invite in an event
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
{inviteId}
required
Number
The id of the invite you want to update
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 DELETE 'https://api.brella.io/api/integration/organizations/{organizationId}/events/{eventId}/invites/{inviteId}' \
--header 'Brella-API-Access-Token: String' \
--header 'Accept: application/vnd.brella.v4+json' \
--header 'Content-Type: application/json'
Responses
200
{
  "data": {
    "id": "712424",
    "type": "invite",
    "attributes": {
      "fill-token": "LDIZXG",
      "external-email": "testing+invites1918@example.com",
      "external-id": "11918",
      "external-first-name": "Tester1918",
      "external-last-name": "McTestersson1918",
      "external-company": "Testers 1918",
      "external-title": "QA 1918",
      "qr-string": "brella_invite_id=712424&brella_invite_token=LDIZXG",
      "created-at": "2023-01-24T20:01:21.245Z",
      "updated-at": "2023-01-29T18:46:36.136Z",
      "attendee-group-name": "Attendees",
      "seat-count": "0",
      "free-seat-count": "0"
    },
    "relationships": {
      "attendee-group": {
        "data": {
          "id": "11428",
          "type": "attendee-group"
        }
      },
      "seats": {
        "data": []
      },
      "free-seats": {
        "data": []
      },
      "question-responses": {
        "data": []
      }
    }
  },
  "included": [
    {
      "id": "11428",
      "type": "attendee-group",
      "attributes": {
        "name": "Attendees",
        "attendance-type": "virtual",
        "default": "true",
        "users-are-deletable": "false",
        "created-at": "2022-04-13T11:18:36.831Z",
        "updated-at": "2022-04-13T11:18:36.831Z",
        "attendees-count": {}
      },
      "relationships": {
        "attendees": {
          "data": []
        }
      }
    }
  ]
}




Updated 13 Apr 2023
Did this page help you?
PREVIOUS
Update invite
NEXT
List all attendees
Docs powered by Archbee
TABLE OF CONTENTS
DELETE
Delete existing invite
Docs powered by Archbee