Skip to documentation
Brightree integration

Check Delivery Proof

Perform Check Delivery Proof through Brightree.

View as Markdown
brightree_check_delivery_proof
writebrightree

Inputs

  • documents
    expression
    Documents

    Optional literal value or workflow expression.

  • delivery_proof_document_types
    multi_selectdynamic options
    Delivery Proof Document Types

    Optional list of selected values. Retrieve allowed values from the dynamic options endpoint.

Outputs

  • has_matchHas Match
  • reasonReason

Output schema completeness: best_effort_declared

Safety

External effect
write
Confirmation recommended
No
Retry safe
No
Dry run supported
No

Schemas

These schemas are first-pass authoring guidance. Runtime validation remains authoritative.

Input schema
{
  "type": "object",
  "properties": {
    "documents": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "delivery_proof_document_types": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Optional list of selected values. Retrieve allowed values from the dynamic options endpoint.",
      "x-dynamic-options": true,
      "x-workflow-field-type": "multi_select"
    }
  },
  "additionalProperties": false
}
Output schema
{
  "type": "object",
  "properties": {
    "reason": {},
    "has_match": {}
  },
  "additionalProperties": true
}
View all Brightree actions