Skip to main content
Skip table of contents

IVR Remove

Mit diesem Aufruf wird eine registrierte Session entfernt.

GET /api/v1/Ivr/remove/{sessionId}

POST /api/v1/Ivr/remove

JSON
{
  "sessionId": "string"
}

sessionId: Die Session ID, welche entfernt werden soll.

Sollten keine Session gefunden werden, wird ein Status 200 mit folgendem Inhalt zurückgegeben:

JSON
{
  "responseCode": 404,
  "responseText": "Session was not found!",
  "sessionId": "WRONG_SESSION_ID"
}

Wurde die Session gefunden und entfernt, wird ein Status 200 mit folgendem Inhalt zurückgegeben:

JSON
{
  "responseCode": 200,
  "responseText": null,
  "sessionId": "REMOVED_SESSION_ID"
}

JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.