Response object

Every decision request returns a structured response describing what DelegateZero decided, how confident it is, and what it produced as the canonical response.

The response object is designed to be both machine-readable (for automation) and human-reviewable (via the audit log).

Here is what a response looks like:

{
  "id": "9f31c2",
  "decision": "execute",
  "confidence": 0.86,
  "title": "Monthly analytics email to Jane",
  "summary": "Sent monthly analytics report to Jane at ABC Company covering January performance.",
  "reason": "Email content aligns with the provided analytics data and prior client report templates",
  "response": "Here's your monthly website analytics report for January. Overall traffic increased by 12% month-over-month, driven primarily by organic search. Conversion rate remained steady at 2.4%, with top-performing pages being /pricing and /blog. Notably, paid spend decreased by 8% while total leads increased by 5%. Let me know if you'd like a deeper breakdown or have any questions. Best, Your Team",
  "audit_url": "https://delegatezero.com/app/decisions/9f31c2"
}

If your request contained response_schema values (so that the response will be structured), they will be put in a property response_schema like this:

{
  "id": "9f31c2",
  "decision": "execute",
  "confidence": 0.86,
  "reason": "Email content aligns with the provided analytics data and prior client report templates",
  "response_schema": {
    "subject": "ABC Company - Monthly Analytics Update",
    "email": "jane@abccompany.com",
    "text": "Here's your monthly website analytics report for January. Overall traffic increased by 12% month-over-month, driven primarily by organic search. Conversion rate remained steady at 2.4%, with top-performing pages being /pricing and /blog. Notably, paid spend decreased by 8% while total leads increased by 5%. Let me know if you'd like a deeper breakdown or have any questions. Best, Your Team"
  }
  "audit_url": "https://delegatezero.com/app/decisions/9f31c2"
}

Here is an explanation of each response property:

  • id: A unique identifier for the decision. Use this to correlate requests, retrieve audit logs, or reference the decision in downstream systems.
  • decision: Indicates how DelegateZero handled the request. Possible values are execute (action taken automatically), draft (output generated but not executed), or escalate (human review required).
  • confidence: A number between 0 and 1 representing how confident DelegateZero is that the decision and response match your expected judgment.
  • title: A short noun phrase (5 words max) describing the decision. Useful for display in dashboards or notification summaries.
  • summary: A one to two sentence internal summary of the request and outcome, written for human review.
  • reason: A plain-text explanation describing why the decision was made, what context influenced it, and what gaps (if any) affected confidence.
  • response: The canonical output produced by DelegateZero for this request. This represents what DelegateZero would send or do on your behalf.
  • response_schema: An optional object containing a structured split of the response into named fields. Returned only when requested via instructions.response_schema.
  • audit_url: A URL linking to the audit log for this decision, showing what context was used and how the outcome was determined.

Sorry, we don't have any results for that search. If you need assistance, please contact us.