End video call for the connected user

Manually ends an active video call session for the connected user. This endpoint is typically used by system to forcefully close a session that is still ongoing.

Parameters:

  • companyKey (string, required) - The company's secret key.
  • sessionId (string, required) - The unique identifier of the session.
post/end-video-call

Request body

companyKeystring
sessionIdstring

Example request

{
  "companyKey": "your-company-secret-key",
  "sessionId": "example-session-id-12345"
}

Response

Success

EndVideoCallResponse required

Example response

{}

Changes