# Create Drop Ship PO

> Perform Create Drop Ship PO through Brightree.

Source: [https://genhealth.ai/docs/workflows/integrations/brightree/brightree_create_drop_ship_po](https://genhealth.ai/docs/workflows/integrations/brightree/brightree_create_drop_ship_po)

Integration: [Brightree](https://genhealth.ai/docs/workflows/integrations/brightree.md)

- Handler: `brightree_create_drop_ship_po`

- Connection type: `brightree`

## Inputs

- `sales_order_key` — Sales Order Key (expression)
  Optional literal value or workflow expression.
- `vendor` — Vendor (expression)
  Optional literal value or workflow expression.
- `priority` — Priority (text)
  Optional text value.
  Default: `"Normal"`
- `ship_method` — Ship Method (text)
  Optional text value.
  Default: `"Ground"`
- `signature_required` — Signature Required (boolean)
  Optional true-or-false value.
- `submit_po` — Submit Po (boolean)
  Optional true-or-false value.
  Default: `true`
- `verification_max_wait_seconds` — Verification Max Wait Seconds (number)
  Optional numeric value.
  Default: `4`
- `verification_poll_interval_seconds` — Verification Poll Interval Seconds (number)
  Optional numeric value.
  Default: `2`
- `workflow_outcome_mode` — Workflow Outcome Mode (select)
  Optional selected identifier or value.
  Default: `"fail"`
  Options: Fail node ("fail"), Branch to manual review ("human_review")

## Outputs

- `success` — Success
- `manual_review_required` — Manual Review Required
- `outcome_category` — Outcome Category
- `message` — Message
- `purchase_requests` — Purchase Requests
- `items_not_on_pr_count` — Items Not On Pr Count
- `url` — Url
- `failure_reason` — Failure Reason
- `failure_detail` — Failure Detail
- `error` — Error
- `error_message` — Error Message

Output schema completeness: `best_effort_declared`

## Safety

- External effect: `irreversible`
- Confirmation recommended: yes
- Retry safe: no
- Dry run supported: no

## Schemas

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

### Input schema

```json
{
  "type": "object",
  "properties": {
    "vendor": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "priority": {
      "type": "string",
      "default": "Normal",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "submit_po": {
      "type": "boolean",
      "default": true,
      "description": "Optional true-or-false value.",
      "x-workflow-field-type": "boolean"
    },
    "ship_method": {
      "type": "string",
      "default": "Ground",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "sales_order_key": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "signature_required": {
      "type": "boolean",
      "description": "Optional true-or-false value.",
      "x-workflow-field-type": "boolean"
    },
    "workflow_outcome_mode": {
      "enum": [
        "fail",
        "human_review"
      ],
      "type": "string",
      "default": "fail",
      "description": "Optional selected identifier or value.",
      "x-workflow-field-type": "select"
    },
    "verification_max_wait_seconds": {
      "type": "number",
      "default": 4,
      "description": "Optional numeric value.",
      "x-workflow-field-type": "number"
    },
    "verification_poll_interval_seconds": {
      "type": "number",
      "default": 2,
      "description": "Optional numeric value.",
      "x-workflow-field-type": "number"
    }
  },
  "additionalProperties": false
}
```

### Output schema

```json
{
  "type": "object",
  "properties": {
    "url": {},
    "error": {},
    "message": {},
    "success": {},
    "error_message": {},
    "failure_detail": {},
    "failure_reason": {},
    "outcome_category": {},
    "purchase_requests": {},
    "items_not_on_pr_count": {},
    "manual_review_required": {}
  },
  "additionalProperties": true
}
```
