delete
https://api-v2.pandavideo.com.br/live_stream_key/
Recent Requests
Log in to see full request history
| Time | Status | User Agent | |
|---|---|---|---|
Retrieving recent requests… | |||
Loading…
DELETE /live_stream_key/{id}
{id}Permanently deletes a live stream key from a sub-account.
AuthorizationOnly parent accounts can delete live stream keys of their sub-accounts. Sub-account-tier callers are rejected.
HTTP Method & Path
DELETE /live_stream_key/{id}
Base URL: https://api-v2.pandavideo.com.br
Authentication Requirements
- Security Scheme:
PandaAuth(apiKey) - Header:
Authorization: <your_api_token>(no Bearer prefix)
Parameters
| Name | In | Type | Required | Description |
|---|---|---|---|---|
Authorization | header | string | Yes | Panda API token (without Bearer prefix) |
Path Parameters
| Name | Type | Required | Description |
|---|---|---|---|
id | string (uuid) | Yes | ID of the live stream key to delete |
No in-use guard. Unlike updating, deletion is not blocked when the key is attached to lives — the key is removed unconditionally. This action cannot be undone.
Response
Success Response (200)
{ "status": true }| Field | Type | Description |
|---|---|---|
status | boolean | true when a key was deleted; false if nothing was removed |
Error Responses
- 400 Bad Request —
"Subaccounts are not allowed to delete stream keys". - 401 Unauthorized — Invalid or missing API token.
- 404 Not Found —
"stream key was not found". - 500 Internal Server Error — Server error.
Example Usage
cURL
curl -X DELETE \
'https://api-v2.pandavideo.com.br/live_stream_key/your_key_id_here' \
-H 'Authorization: your_api_token_here'