Adobe Campaign · JSON Structure

Adobe Campaign Classic Session Logon Response Structure

SOAP response containing session and security tokens.

Type: object Properties: 3
Campaign ManagementCustomer ExperienceEmail MarketingMarketing AutomationMulti-Channel Marketing

SessionLogonResponse is a JSON Structure definition published by Adobe Campaign, describing 3 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

sessionToken securityToken sessionInfo

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/adobe-campaign/refs/heads/main/json-structure/adobe-campaign-classic-session-logon-response-structure.json",
  "name": "SessionLogonResponse",
  "description": "SOAP response containing session and security tokens.",
  "type": "object",
  "properties": {
    "sessionToken": {
      "type": "string",
      "description": "Session token to be passed as __sessiontoken cookie on subsequent requests.",
      "example": "example_value"
    },
    "securityToken": {
      "type": "string",
      "description": "Security token to be passed as X-Security-Token header on subsequent requests.",
      "example": "example_value"
    },
    "sessionInfo": {
      "type": "object",
      "description": "Information about the authenticated session.",
      "properties": {
        "serverInfo": {
          "type": "string"
        },
        "timezone": {
          "type": "string"
        }
      }
    }
  }
}