> ## 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.

# Register Adobe Device Session

Register the Adobe Session device info in Zype

# 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/device": {
      "post": {
        "summary": "Register Adobe Device Session",
        "description": "Register the Adobe Session device info in Zype",
        "operationId": "postRegisterAdobeDeviceSession",
        "tags": [
          "Adobe"
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "title": "Register Adobe Device Session",
                "type": "object",
                "required": [
                  "device_info",
                  "adobe_device_id"
                ],
                "properties": {
                  "device_info": {
                    "type": "string",
                    "description": "Adobe's Base64 Normalized Device Information build on information received from User-Agent, X-Device-Info or device_info"
                  },
                  "adobe_device_id": {
                    "type": "string",
                    "description": "Adobe's Base64-encoded Device Type"
                  }
                }
              }
            }
          }
        },
        "responses": {
          "201": {
            "description": "Device session registered successfully",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "device_session_id": {
                      "type": "string",
                      "description": "UUID",
                      "example": "123e4567-e89b-12d3-a456-426614174000"
                    }
                  }
                }
              }
            }
          },
          "422": {
            "description": "Unprocessable entity",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/paths/~1adobe~1authn/post/responses/422/content/application~1json/schema"
                }
              }
            }
          }
        }
      }
    }
  },
  "components": {
    "securitySchemes": {
      "api_key": {
        "type": "apiKey",
        "name": "api_key",
        "in": "query",
        "description": "The adobe api key"
      }
    }
  }
}
```