changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "oneOf": [
+ {
+ "properties": {
+ "error": {
+ "description": "Error code if connection not configured",
+ "type": "string"
+ },
+ "message": {
+ "description": "Error message with setup instructions",
+ "type": "string"
+ }
+ },
+ "required": [
+ "error",
+ "message"
+ ],
+ "type": "object"
+ },
+ {
+ "properties": {
+ "Customer": {
+ "description": "Customer profile with contact info, email, phone, and balance",
+ "properties": {
+ "DisplayName": {
+ "description": "Customer display name",
+ "type": "string"
+ },
+ "Id": {
+ "description": "Customer ID",
+ "type": "string"
+ },
+ "PrimaryEmailAddr": {
+ "properties": {
+ "Address": {
+ "description": "Email address",
+ "type": "string"
+ }
+ },
+ "type": "object"
+ },
+ "PrimaryPhone": {
+ "properties": {
+ "FreeFormNumber": {
+ "description": "Phone number",
+ "type": "string"
+ }
+ },
+ "type": "object"
+ }
+ },
+ "type": "object"
+ }
+ },
+ "type": "object"
+ }
+ ],
+ "type": "object"
+}