> For the complete documentation index, see [llms.txt](https://developer.perculus.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://developer.perculus.com/v2-en/services/session-management/session-delete.md).

# Deleting a Session

**Example request:**

{% tabs %}
{% tab title="CURL" %}

```bash
curl -L -X DELETE 'https://<DOMAIN>/api/groups/xapi/session/:SESSION_GUID'
```

{% endtab %}

{% tab title="Python" %}

```python
client.sessions.delete_by_session_id("61E3D504-13EE-447F-9B36-6686C5C39FEB")
```

{% endtab %}
{% endtabs %}

**Example Response:**

A successful delete operation will return `204 No Content` without any body.
