---
title: Stream live inputs can now be disabled and enabled
description: Use the new enabled property on live inputs to programmatically control whether a live input accepts incoming broadcasts.

image: https://developers.cloudflare.com/changelog-preview.png
---

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

[Skip to content](#%5Ftop) 

# Changelog

New updates and improvements at Cloudflare.

[ Subscribe to RSS ](https://developers.cloudflare.com/changelog/rss/index.xml) [ View RSS feeds ](https://developers.cloudflare.com/fundamentals/new-features/available-rss-feeds/) 

![hero image](https://developers.cloudflare.com/_astro/hero.CVYJHPAd_26AMqX.svg) 

[ ← Back to all posts ](https://developers.cloudflare.com/changelog/) 

## Stream live inputs can now be disabled and enabled

Feb 24, 2026 

[ Stream ](https://developers.cloudflare.com/stream/) 

You can now disable a live input to reject incoming RTMPS and SRT connections. When a live input is disabled, any broadcast attempts will fail to connect.

This gives you more control over your live inputs:

* Temporarily pause an input without deleting it
* Programmatically end creator broadcasts
* Prevent new broadcasts from starting on a specific input

To disable a live input via the API, set the `enabled` property to `false`:

```bash
curl --request PUT \
https://api.cloudflare.com/client/v4/accounts/{account_id}/stream/live_inputs/{input_id} \
--header "Authorization: Bearer <API_TOKEN>" \
--data '{"enabled": false}'
```

You can also disable or enable a live input from the **Live inputs** list page or the live input detail page in the Dashboard.

All existing live inputs remain enabled by default. For more information, refer to [Start a live stream](https://developers.cloudflare.com/stream/stream-live/start-stream-live/).

```json
{"@context":"https://schema.org","@type":"BlogPosting","@id":"https://developers.cloudflare.com/changelog/post/2026-02-24-disable-live-inputs/#page","headline":"Stream live inputs can now be disabled and enabled · Changelog","description":"Use the new enabled property on live inputs to programmatically control whether a live input accepts incoming broadcasts.","url":"https://developers.cloudflare.com/changelog/post/2026-02-24-disable-live-inputs/","inLanguage":"en","image":"https://developers.cloudflare.com/changelog-preview.png","dateModified":"2026-02-24","datePublished":"2026-02-24","publisher":{"@type":"Organization","name":"Cloudflare","url":"https://www.cloudflare.com/"},"isPartOf":{"@type":"WebSite","@id":"https://developers.cloudflare.com/#website","name":"Cloudflare Docs","url":"https://developers.cloudflare.com/"}}
```
