Delete Live Stream Key

Permanently deletes a stream key. There is no in-use guard, so check is_attached first. Deleting a key frees a plan slot.

Recent Requests
Log in to see full request history
TimeStatusUser Agent
Retrieving recent requests…
LoadingLoading…

DELETE /live_stream_key/{id}

Permanently deletes a stream key from the account.

📘

Authorization

Requires a valid Panda API token sent in the Authorization header (no Bearer prefix).

⚠️

No in-use guard, and no undo. Unlike the update endpoint, deletion is not blocked when the key is attached to a live: the key is removed unconditionally and any encoder still publishing to it stops being accepted. Check is_attached in Stream Keys before deleting.

📘

Deleting frees a plan slot. If POST /live_stream_key is answering the plan has no slot available to create stream key, removing an unused key makes room for a new one.

HTTP Method & Path

DELETE /live_stream_key/{id}

Base URL: https://api-v2.pandavideo.com.br

Authentication Requirements

Security SchemeHeaderNote
API KeyAuthorizationPanda API token (without Bearer prefix)

Parameters

NameInTypeRequiredDescription
AuthorizationheaderstringYesPanda API token (without Bearer prefix)

Path Parameters

NameTypeRequiredDescription
idstring (uuid)YesThe key id returned by Stream Keys — not the stream_key value.

This endpoint takes no body.

Response

Success Response (200)

{ "status": true }
FieldTypeDescription
statusbooleantrue when a key was deleted; false when nothing was removed.

Error Responses

  • 400 Bad Request"Subaccounts are not allowed to delete stream keys".
  • 401 Unauthorized — missing or invalid API token.
  • 404 Not Found"stream key was not found".
  • 500 Internal Server Error — server-side error.

Example Usage

cURL

curl -X DELETE "https://api-v2.pandavideo.com.br/live_stream_key/{stream_key_id}" \
  -H "Authorization: {api_key}"

Related

Path Params
string
required

ID of the live stream key to delete

Responses

Language
Credentials
Header
LoadingLoading…
Response
Click Try It! to start a request and see the response here! Or choose an example:
application/json