Skip to main content
Skip table of contents

Parloa Remove

Mit diesem Aufruf wird eine registrierte Session entfernt.

POST /api/v1/Parloa/remove

JSON
{
  "input": {
    "sessionId": "string"
  },
  "context": {
    "releaseId": "string",
    "userContextId": "string",
    "conversationId": "string",
    "dialogId": "string",
    "dialogVersion": "string",
    "fovConversationId": "string",
    "platform": "string"
  }
}

Folgende Schlüssel müssen immer übergeben werden:

sessionId: Die Session ID welche entfernt werden soll.

Sollte der Parameter fehlen, oder die Session nicht gefunden werden, wird mit einem Status 200 geantwortet:

JSON
{
  "choice": "success",
  "output": {
    "sessionId": "",
    "responseCode": 404,
    "responseText": "Session was not found!"
  }
}

Bei erfolgreichem Aufruf, wird ein Status 200 mit folgendem Inhalt zurückgegeben:

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

JavaScript errors detected

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

If this problem persists, please contact our support.