> ## Documentation Index
> Fetch the complete documentation index at: https://docs.zype.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Destroys Device Session.

Remove the Adobe Device Session from Zype and Adobe's authn and authz token.

# OpenAPI definition

```json
{
  "openapi": "3.0.1",
  "info": {
    "title": "TVE",
    "description": "",
    "version": "1.0"
  },
  "servers": [
    {
      "url": "https://tve.zype.com/"
    }
  ],
  "security": [
    {
      "api_key": []
    }
  ],
  "paths": {
    "/adobe/logout": {
      "delete": {
        "summary": "Destroys Device Session.",
        "description": "Remove the Adobe Device Session from Zype and Adobe's authn and authz token.",
        "operationId": "postRemoveAdobeDeviceSession",
        "tags": [
          "Adobe"
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "title": "Remove Adobe Device Session",
                "type": "object",
                "required": [
                  "device_session_id"
                ],
                "properties": {
                  "device_session_id": {
                    "type": "string",
                    "description": "The device session ID returned from the Register Adobe Device Session endpoint"
                  }
                }
              }
            }
          }
        },
        "responses": {
          "204": {
            "description": "Device session removed successfully",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "Device Session",
                  "properties": {
                    "_id": {
                      "type": "string",
                      "description": "UUID",
                      "example": "123e4567-e89b-12d3-a456-426614174000"
                    },
                    "adobe_device_id": {
                      "type": "string",
                      "description": "Adobe's Base64-encoded Device Type",
                      "example": "c28tZGV2aWQtMDAz"
                    }
                  }
                }
              }
            }
          },
          "422": {
            "description": "Unprocessable entity",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/paths/~1adobe~1authn/post/responses/422/content/application~1json/schema"
                },
                "example": {
                  "message": "Could not log out device session: [ERROR_MESSAGE]"
                }
              }
            }
          }
        }
      }
    }
  },
  "components": {
    "securitySchemes": {
      "api_key": {
        "type": "apiKey",
        "name": "api_key",
        "in": "query",
        "description": "The adobe api key"
      }
    }
  }
}
```