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

# Dial-in stopped

> The dial-in stopped webhook

Emitted when the session when the SIP or PSTN session is stopped or ended.

## Common fields

<ParamField body="version" type="string">
  Represents the version of the event. Uses semantic versioning to inform a consumer if the payload has introduced any breaking changes.
</ParamField>

<ParamField body="type" type="string">
  Represents the type of the event described in the payload.
</ParamField>

<ParamField body="id" type="string">
  An identifier representing this specific event.
</ParamField>

<ParamField body="payload" type="object">
  An object representing the event, whose fields are described below.
</ParamField>

<ParamField body="event_ts" type="number">
  Documenting when the webhook itself was sent. This timestamp is different than the time of the event the webhook describes.
</ParamField>

## Payload

<ParamField body="timestamp" type="integer">
  The Unix epoch time in seconds representing when this event occurred.
</ParamField>

<ParamField body="session_id" type="string">
  The sessionId of the dial-in session.
</ParamField>

<ParamField body="sip_from" type="string">
  sip address of the incoming call.
</ParamField>

<ParamField body="domain_id" type="string">
  ID of the domain corresponding to this dial-in event.
</ParamField>

<ParamField body="room" type="string">
  The name of the room where dial-in event occurred.
</ParamField>

<ParamField body="display_name" type="string">
  name displayed for the incoming user.
</ParamField>

<ParamField body="sip_headers" type="object">
  sip header and header values in the incoming sip invite.
</ParamField>

```json theme={null}
{
  "version": "1.0.0",
  "type": "dialin.stopped",
  "id": "2868-dial-in-stop-ff1e7130-7752-4304-9cf4-08d2583a41dc",
  "payload": {
    "domain_id": "04b89420-cf8b-4ea5-a428-02c40b0e2a59",
    "room": "my-dialin-room",
    "timestamp": "1728036616",
    "session_id": "ff1e7130-7752-4304-9cf4-08d2583a41dc",
    "sip_from": "sip:myuser@myuser.sip.twilio.com",
    "sip_headers": {
      "X-New-Hdr": "myhdr"
    },
    "display_name": "sip-user"
  },
  "event_ts": 1728036616.857
}
```
