Stop Live Session
Stop and remove a live translation session. This ends all processing and releases resources associated with the session.
DELETE
/v2/live/sessions/:idPath Parameters
Path Parameters
| Name | Type | Required | Description |
|---|---|---|---|
| id | string | required | The unique identifier of the live session to stop. |
Response
Returns 204 No Content on success. No response body is returned.
Idempotent: stopping a session that is already ended (or was previously stopped) returns 204 with no side effects, so it is safe to retry.
500 timeout: the underlying channel stop has a 5-minute deadline. If the channel does not stop cleanly in that window, the session is marked ended with an error and the request returns 500. In practice this is rare; if you see it, the session state is still consistent (the session is no longer active) and no follow-up call is required.
Request
curl -X DELETE "https://ai.api.production.signapsesolutions.com/v2/live/sessions/ls_abc123def456" \
-H "X-API-KEY: YOUR_API_KEY"Response
(No response body)Last updated on