{ "$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" } } } } }