delete
https://api-v2.pandavideo.com.br/lives//rtmp_endpoint
Removes a single restream RTMP/RTMPS destination from a live stream, identified by the rtmp_id query parameter.
Recent Requests
Log in to see full request history
| Time | Status | User Agent | |
|---|---|---|---|
Retrieving recent requests… | |||
Loading…
DELETE /lives/{live_id}/rtmp_endpoint
{live_id}/rtmp_endpointRemoves a single restream destination attached to a live stream. The destination to remove is identified by the rtmp_id query parameter (retrieve it via List restream destinations).
AuthorizationRequires a valid Panda API token sent in the
Authorizationheader (no Bearer prefix).
HTTP Method & Path
DELETE /lives/{live_id}/rtmp_endpoint
Base URL: https://api-v2.pandavideo.com.br
Authentication Requirements
| Security Scheme | Header | Note |
|---|---|---|
| API Key | Authorization | Panda API token (without Bearer prefix) |
Parameters
| Name | In | Type | Required | Description |
|---|---|---|---|---|
Authorization | header | string | Yes | Panda API token (without Bearer prefix) |
Path Parameters
| Field | Type | Required | Description | Constraints |
|---|---|---|---|---|
live_id | string (uuid) | Yes | ID of the live stream that owns the restream destination. | uuid |
Query Parameters
| Field | Type | Required | Description | Constraints |
|---|---|---|---|---|
rtmp_id | string (uuid) | Yes | ID of the restream binding to remove. Retrieve it from List restream destinations. | uuid |
Heads up: the destination ID goes in the query string as?rtmp_id=..., not in the URL path or request body.
Response
Success Response (200)
{
"status": true
}Response Schema
| Field | Type | Description |
|---|---|---|
status | boolean | true when the restream destination was removed successfully. |
Error Responses
- 400 Bad Request — Missing or invalid
rtmp_idquery parameter. - 401 Unauthorized — Missing or invalid API token.
- 404 Not Found — Live or restream binding not found.
- 500 Internal Server Error — Server-side error.
Example Usage
cURL
curl -X DELETE \
'https://api-v2.pandavideo.com.br/lives/<live_id>/rtmp_endpoint?rtmp_id=<rtmp_id>' \
-H 'Authorization: your_api_token_here' \
-H 'Accept: application/json'Related
- Live Restream —
POSTto attach a new destination. - List restream destinations —
GETto list current bindings and obtainrtmp_id.
400Missing or invalid rtmp_id query parameter.
