> For the complete documentation index, see [llms.txt](https://prosbcdocs.telcobridges.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://prosbcdocs.telcobridges.com/telecom-references/voice-and-media/custom-sip-bye-headers-format.md).

# Custom SIP BYE headers format

The custom SIP BYE headers field is formatted similarly to [Text CDR records](https://github.com/telcobridges-main/tmedia-wiki/tree/main/reference/concepts/text-call-detail-records/README.md). For example, the following content:

```
X-Test: This is a test.
P-RTP-Stat: PL=@{Stat:Rtp:Rx:Error:LostPackets}, DU=@{CallDuration}
```

Would put the following SIP headers in the BYE packet:

```
X-Test: This is a test.
P-RTP-Stat: PL=0, DU=12
```

For a call which lasted 12 seconds and had no packet loss.

For **P-RTP-Stat** SIP BYE headers, it is recommended to use the following content in release 2.8:

```
P-RTP-Stat: PS=@{Stat:Rtp:Tx:VoicePackets}, PR=@{Stat:Rtp:Rx:VoicePackets}, OR=@{Stat:Rtp:Rx:VoiceBytes}, PL=@{Stat:Rtp:Rx:Error:LostPackets}, JI=@{Stat:Rtcp:Jitter}, DU=@{CallDuration}
```

The following link provides the statistics format: [Call statistics format](https://github.com/telcobridges-main/tmedia-wiki/tree/main/reference/voice-media/call-statistics-format/README.md).

Here is the list of fields specific to SIP BYE headers:

| Field name        | Description                    |
| ----------------- | ------------------------------ |
| @{CallDuration}   | Call duration, in seconds      |
| @{CallDurationMs} | Call duration, in milliseconds |


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://prosbcdocs.telcobridges.com/telecom-references/voice-and-media/custom-sip-bye-headers-format.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
