1. Events
Networked API Documentation
  • Getting Started
  • User Authentication
    • Add New Users to Community
      POST
    • Send email invites
      POST
  • User Profile
    • User Profile
      GET
    • Profile Visits
      GET
  • Community
    • Features
      • Feature List
    • Directory
      • Users List
      • Roles List
    • Monetization
      • Plans
        • Plans List
    • Feed
      • Polls
        • Create Polls
      • Surveys
        • Create Surveys
      • Post
        • Ask and offer help
          • Post Intro
          • Post Advice
          • Post Recommendation
          • Post Kudos
          • Post Help
        • Feed Post List
        • Post to Feed
        • Get Post Comments
        • Add Comments to Post
      • upload Media
    • Opportunities
      • Company and Services
        • Company and Services List
      • Fundaising Initiatives
        • Fundraising Initiatives List
      • Career Opportunities
        • Career Opportunities
    • Events
      • Event Post
        POST
      • Edit Events
        PUT
      • Delete Event
        DELETE
      • Event List
        GET
    • Media Center
      • Get Resources
    • Analytics
      • Community Analytics
    • Newsletter
      • Lists
        • Get newsletter subscriber lists
      • Add newsletter subscribers
      • Get newsletter subscribers
    • Community Details
      GET
    • Spaces List
      GET
  • Webhooks
    • User Webhooks
      • user.joined
      • user.profile.updated
      • user.joined.space
    • Feed Webhooks
      • post.created
      • post.liked
      • post.unliked
      • comment.added
      • post.reported
  • References
    • Response Codes
      GET
    • Model Status
      GET
    • Post Types
      GET
  1. Events

Delete Event

DELETE
https://backend.networked.co/events

Delete an Event#

Permanently removes an event from your community. The event and its associated feed post are marked as deleted (they no longer appear in listings).

Authentication uses an API key issued by Networked.#

HTTP Method#

DELETE

Endpoint#

https://api.networked.co/events

Headers#

NameTypeRequiredDescription
x-api-keystringYesSecret API key provided by Networked. Required for authentication.
spaceIdstringNoSpace ID when the event belongs to a Space. If omitted, the community tied to your API key is used.

Query Parameters#

Parameters are sent in the URL query string, not in a request body.
NameTypeRequiredDescription
eventIdstringYesID of the event to delete (from Create Event or Get Events).
recurrenceOptionnumberConditionalRequired for recurring events. Controls how much of the series is deleted. See Deleting recurring events. Omit for single (non-recurring) events.
Example URL:
DELETE https://api.networked.co/events?eventId=6855529c7000000012**2dd01&recurrenceOption=0

Non-recurring events#

If the event is not part of a recurring series, send only eventId. The event and its feed post are deleted.
DELETE /events?eventId=6855529c7000000012**2dd01

Deleting recurring events#

When the event is part of a recurring series, you must send recurrenceOption to choose the scope—same choices as Delete recurring event in the Networked app.

recurrenceOption#

ValueUI labelWhat is deleted
0This eventOnly the occurrence identified by eventId. Other dates in the series remain.
1This and following eventsThis occurrence and every later occurrence in the same series (same or later startTime). Earlier dates remain.
2All eventsEvery occurrence in the series, including past and future dates.
When to use each value:
Your goalrecurrenceOption
Remove one date from the series0
Remove this date and all future dates1
Cancel the entire recurring series2
Single (non-recurring) eventOmit (only eventId)

Sample request (single event)#

DELETE https://api.networked.co/events?eventId=6855529c7000000012**2dd01
Headers:
x-api-key: your-api-key-here

Sample request (recurring — this event only)#

DELETE https://api.networked.co/events?eventId=6855529c7000000012**2dd01&recurrenceOption=0

Sample request (recurring — this and following events)#

DELETE https://api.networked.co/events?eventId=6855529c7000000012**2dd01&recurrenceOption=1

Sample request (recurring — all events in series)#

DELETE https://api.networked.co/events?eventId=6855529c7000000012**2dd01&recurrenceOption=2

Sample Response#

{
  "data": "Success",
  "error": false,
  "message": "Success"
}

Response Interface#

interface DeleteEventResponse {
  data: string;
  error: boolean;
  message: string;
}

Response Field Descriptions#

FieldTypeDescription
datastringSuccess message when the delete completes.
errorbooleanfalse indicates the API call was successful.
messagestringHuman-readable result of the request.

Reference#

Standard Response Codes Reference
Create Event (POST /events)
Update Event (PUT /events) — uses the same recurrenceOption values when editing a series
Get Events (GET /events) — obtain eventId

Notes#

Only the event creator can delete an event. Requests from other users return an authorization error.
Use a valid API key for the community that owns the event.
For recurring events, always send recurrenceOption (0, 1, or 2). For a one-time event, only eventId is required.
recurrenceOption uses the same numeric values as Edit Event (0 = this event, 1 = this and following, 2 = all events).
Rate limits apply to API key requests. Retry with backoff if you receive a rate-limit response.

Request

Query Params

Header Params

Responses

🟢200Success
application/json
Bodyapplication/json

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request DELETE 'https://backend.networked.co/events?eventId=6a08397f1eb2c90012295b73&recurrenceOption=0' \
--header 'x-api-key: <your-api-key>'
Response Response Example
{
    "data": "Operation completed successfully",
    "error": false,
    "message": "Operation completed successfully"
}
Modified at 2026-05-16 10:10:36
Previous
Edit Events
Next
Event List
Built with