https://api.networked.co/events| Name | Type | Required | Description |
|---|---|---|---|
| x-api-key | string | Yes | Secret API key provided by Networked. Required for authentication. |
| spaceId | string | No | Space ID when the event belongs to a Space. If omitted, the community tied to your API key is used. |
| Name | Type | Required | Description |
|---|---|---|---|
| eventId | string | Yes | ID of the event to delete (from Create Event or Get Events). |
| recurrenceOption | number | Conditional | Required for recurring events. Controls how much of the series is deleted. See Deleting recurring events. Omit for single (non-recurring) events. |
DELETE https://api.networked.co/events?eventId=6855529c7000000012**2dd01&recurrenceOption=0eventId. The event and its feed post are deleted.DELETE /events?eventId=6855529c7000000012**2dd01recurrenceOption to choose the scope—same choices as Delete recurring event in the Networked app.| Value | UI label | What is deleted |
|---|---|---|
| 0 | This event | Only the occurrence identified by eventId. Other dates in the series remain. |
| 1 | This and following events | This occurrence and every later occurrence in the same series (same or later startTime). Earlier dates remain. |
| 2 | All events | Every occurrence in the series, including past and future dates. |
| Your goal | recurrenceOption |
|---|---|
| Remove one date from the series | 0 |
| Remove this date and all future dates | 1 |
| Cancel the entire recurring series | 2 |
| Single (non-recurring) event | Omit (only eventId) |
DELETE https://api.networked.co/events?eventId=6855529c7000000012**2dd01x-api-key: your-api-key-hereDELETE https://api.networked.co/events?eventId=6855529c7000000012**2dd01&recurrenceOption=0DELETE https://api.networked.co/events?eventId=6855529c7000000012**2dd01&recurrenceOption=1DELETE https://api.networked.co/events?eventId=6855529c7000000012**2dd01&recurrenceOption=2{
"data": "Success",
"error": false,
"message": "Success"
}interface DeleteEventResponse {
data: string;
error: boolean;
message: string;
}| Field | Type | Description |
|---|---|---|
| data | string | Success message when the delete completes. |
| error | boolean | false indicates the API call was successful. |
| message | string | Human-readable result of the request. |
recurrenceOption values when editing a serieseventIdrecurrenceOption (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).curl --location --request DELETE 'https://backend.networked.co/events?eventId=6a08397f1eb2c90012295b73&recurrenceOption=0' \
--header 'x-api-key: <your-api-key>'{
"data": "Operation completed successfully",
"error": false,
"message": "Operation completed successfully"
}