Delete restream destination

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
TimeStatusUser Agent
Retrieving recent requests…
LoadingLoading…

DELETE /lives/{live_id}/rtmp_endpoint

Removes 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).

📘

Authorization

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

HTTP Method & Path

DELETE /lives/{live_id}/rtmp_endpoint

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

FieldTypeRequiredDescriptionConstraints
live_idstring (uuid)YesID of the live stream that owns the restream destination.uuid

Query Parameters

FieldTypeRequiredDescriptionConstraints
rtmp_idstring (uuid)YesID 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

FieldTypeDescription
statusbooleantrue when the restream destination was removed successfully.

Error Responses

  • 400 Bad Request — Missing or invalid rtmp_id query 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

Path Params
uuid
required

ID of the live stream.

Query Params
uuid
required

ID of the restream binding to remove. Get this from GET /lives/{live_id}/rtmp_endpoint.

Responses

400

Missing or invalid rtmp_id query parameter.

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