Adobe Campaign · Schema

SessionLogonResponse

SOAP response containing session and security tokens.

Campaign ManagementCustomer ExperienceEmail MarketingMarketing AutomationMulti-Channel Marketing

Properties

Name Type Description
sessionToken string Session token to be passed as __sessiontoken cookie on subsequent requests.
securityToken string Security token to be passed as X-Security-Token header on subsequent requests.
sessionInfo object Information about the authenticated session.
View JSON Schema on GitHub

JSON Schema

adobe-campaign-classic-session-logon-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/adobe-campaign/refs/heads/main/json-schema/adobe-campaign-classic-session-logon-response-schema.json",
  "title": "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"
        }
      }
    }
  }
}