changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "additionalProperties": false,
+ "properties": {
+ "result": {
+ "additionalProperties": true,
+ "description": "Advanced sandbox outbound mail job and webhook status.",
+ "properties": {
+ "message": {
+ "description": "Lifecycle transition and webhook status.",
+ "type": "string"
+ },
+ "outbound_mail": {
+ "additionalProperties": true,
+ "description": "Outbound postal mail job summary.",
+ "properties": {
+ "carrier": {
+ "description": "Carrier name when available.",
+ "type": "string"
+ },
+ "cost_cents": {
+ "description": "Charged cost in cents, or 0 for sandbox/test records.",
+ "type": "integer"
+ },
+ "created_at": {
+ "description": "Creation timestamp.",
+ "format": "date-time",
+ "type": "string"
+ },
+ "id": {
+ "description": "Outbound mail job UUID.",
+ "format": "uuid",
+ "type": "string"
+ },
+ "mail_class": {
+ "description": "Selected postal or carrier service.",
+ "type": "string"
+ },
+ "page_count": {
+ "description": "Number of printed pages.",
+ "type": "integer"
+ },
+ "recipient_name": {
+ "description": "Recipient name.",
+ "type": "string"
+ },
+ "status": {
+ "description": "Current mail lifecycle status.",
+ "type": "string"
+ },
+ "test_mode": {
+ "description": "Whether this is a sandbox/test mail record.",
+ "type": "boolean"
+ },
+ "tracking_number": {
+ "description": "Carrier tracking number when available.",
+ "type": "string"
+ }
+ },
+ "type": "object"
+ }
+ },
+ "required": [
+ "outbound_mail",
+ "message"
+ ],
+ "type": "object"
+ }
+ },
+ "required": [
+ "result"
+ ],
+ "type": "object"
+}