Skip to main content
POST
/
capture
/
session
/
{streaming_session_id}
/
stop
Stop capture session
curl --request POST \
  --url https://api.videodb.io/capture/session/{streaming_session_id}/stop \
  --header 'x-access-token: <api-key>'
{
  "success": true,
  "message": "Operation successful"
}
Stop an active capture session. This ends the media ingestion and finalizes any stored recordings.
  • Stopping a session finalizes all channel recordings
  • Stored media becomes available for indexing and search after processing

Authorizations

x-access-token
string
header
required

API key for authentication (sk-xxx format)

Path Parameters

streaming_session_id
string
required
Example:

"capture-12345"

Response

200 - application/json

Session stopped

success
boolean
Example:

true

message
string
Example:

"Operation successful"