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

# Delete Event

> Delete event.

#### Path Params

<ParamField path="event_id" type="integer">ID of the event. </ParamField>

#### Headers

<ParamField header="QB-Token" type="string" required>
  A user session token. See [Authentication](/reference/authentication) page
  to learn more about the session token.
</ParamField>

#### Responses

<AccordionGroup>
  <Accordion title="200">
    A successful response
  </Accordion>

  <Accordion title="403">
    An error response

    <ResponseField name="errors" type="object">
      <Expandable title="properties">
        <ResponseField name="base" type="array of strings" />
      </Expandable>
    </ResponseField>
  </Accordion>

  <Accordion title="404">
    An error response

    <ResponseField name="code" type="string" />

    <ResponseField name="message" type="string" />
  </Accordion>
</AccordionGroup>

<RequestExample>
  ```bash cURL theme={null}
  curl -i -X DELETE \
  -H "QB-Token: 37d3a10a1843ac780cb6f2c683bddad2b0012bba" \
  https://api.quickblox.com/events/30541483.json
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  Empty body
  ```

  ```json 403 theme={null}
  {
    "errors": {
      "base": [
        "You are not owner of this object"
      ]
    }
  }
  ```

  ```json 404 theme={null}
  {
    "code": null,
    "message": "Couldn't find Event::Base with 'id'=123"
  }
  ```
</ResponseExample>
