> ## Documentation Index
> Fetch the complete documentation index at: https://docs.autosend.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Delete Event

> Soft-deletes an event definition. Existing event logs for this name are retained but no new logs can be recorded against it.

<Note>
  Soft-deletes an event definition. Existing event logs recorded for this name are retained for analytics, but no new events can be sent against it.
</Note>

<RequestExample>
  ```bash cURL theme={null}
  curl --request DELETE \
    --url https://api.autosend.com/v1/events/eventName/order_completed \
    --header 'Authorization: Bearer AS_your-project-api-key'
  ```

  ```python Python theme={null}
  import requests

  url = "https://api.autosend.com/v1/events/eventName/order_completed"

  headers = {
      "Authorization": "Bearer AS_your-project-api-key"
  }

  response = requests.delete(url, headers=headers)
  print(response.json())
  ```

  ```javascript JavaScript theme={null}
  fetch('https://api.autosend.com/v1/events/eventName/order_completed', {
    method: 'DELETE',
    headers: {
      'Authorization': 'Bearer AS_your-project-api-key'
    }
  })
    .then(response => response.json())
    .then(data => console.log(data))
    .catch(error => console.error('Error:', error));
  ```

  ```php PHP theme={null}
  <?php

  $url = 'https://api.autosend.com/v1/events/eventName/order_completed';

  $ch = curl_init($url);
  curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
  curl_setopt($ch, CURLOPT_CUSTOMREQUEST, 'DELETE');
  curl_setopt($ch, CURLOPT_HTTPHEADER, [
      'Authorization: Bearer AS_your-project-api-key'
  ]);

  $response = curl_exec($ch);
  curl_close($ch);

  echo $response;
  ?>
  ```

  ```go Go theme={null}
  package main

  import (
      "fmt"
      "net/http"
  )

  func main() {
      url := "https://api.autosend.com/v1/events/eventName/order_completed"

      req, _ := http.NewRequest("DELETE", url, nil)
      req.Header.Set("Authorization", "Bearer AS_your-project-api-key")

      client := &http.Client{}
      resp, err := client.Do(req)
      if err != nil {
          fmt.Println("Error:", err)
          return
      }
      defer resp.Body.Close()

      fmt.Println("Response Status:", resp.Status)
  }
  ```

  ```java Java theme={null}
  import java.net.HttpURLConnection;
  import java.net.URL;

  public class DeleteEvent {
      public static void main(String[] args) {
          try {
              URL url = new URL("https://api.autosend.com/v1/events/eventName/order_completed");
              HttpURLConnection con = (HttpURLConnection) url.openConnection();

              con.setRequestMethod("DELETE");
              con.setRequestProperty("Authorization", "Bearer AS_your-project-api-key");

              int status = con.getResponseCode();
              System.out.println("Response Status: " + status);

              con.disconnect();
          } catch (Exception e) {
              e.printStackTrace();
          }
      }
  }
  ```

  ```ruby Ruby theme={null}
  require 'net/http'
  require 'uri'

  uri = URI('https://api.autosend.com/v1/events/eventName/order_completed')

  http = Net::HTTP.new(uri.host, uri.port)
  http.use_ssl = true

  request = Net::HTTP::Delete.new(uri)
  request['Authorization'] = 'Bearer AS_your-project-api-key'

  response = http.request(request)
  puts response.body
  ```
</RequestExample>

<ResponseExample>
  ```json Response theme={null}
  {
    "success": true,
    "message": "Event deleted successfully"
  }
  ```
</ResponseExample>

***

#### Authorizations

<ParamField path="Authorizations" type="string | header" required>
  Project API key header of the form Bearer `AS_<key>`.
</ParamField>

### Path Parameters

<ParamField path="eventName" type="string" required>
  Name of the event to delete.

  Example: `"order_completed"`
</ParamField>

#### Response

<span className="text-sm">Event deleted successfully</span>

<ResponseField name="success" type="boolean">
  Example: `true`
</ResponseField>

<ResponseField name="message" type="string">
  Confirmation message.

  Example: `"Event deleted successfully"`
</ResponseField>

#### Error Responses

<ResponseField name="404 - Event not found" type="object">
  ```json theme={null}
  {
    "success": false,
    "error": {
      "message": "Event not found",
      "code": "EVENT_NOT_FOUND"
    }
  }
  ```
</ResponseField>


## OpenAPI

````yaml DELETE /events/eventName/{eventName}
openapi: 3.1.0
info:
  title: AutoSend API
  description: >-
    AutoSend REST API for managing event definitions and recording event logs
    for a project. These endpoints accept a standard project API key (AS_
    prefix).
  version: 1.0.0
servers:
  - url: https://api.autosend.com/v1
security:
  - bearerAuth: []
paths:
  /events/eventName/{eventName}:
    delete:
      summary: Delete Event
      description: >-
        Soft-deletes an event definition. Existing event logs for this name are
        retained but no new logs can be recorded against it.
components: {}

````

## Related topics

- [Update Event](/api-reference/events/update-event.md)
- [Event Types](/others/webhooks/event-type.md)
- [Events](/automations/events.md)
- [Delete Campaign](/api-reference/campaigns/delete.md)
- [Delete Automation](/api-reference/automations/delete-automation.md)
