# Resolve Consignment Salesperson

> Perform Resolve Consignment Salesperson through Consignment Intake.

Source: [https://genhealth.ai/docs/workflows/integrations/consignment-intake/resolve_consignment_salesperson](https://genhealth.ai/docs/workflows/integrations/consignment-intake/resolve_consignment_salesperson)

Integration: [Consignment Intake](https://genhealth.ai/docs/workflows/integrations/consignment-intake.md)

- Handler: `resolve_consignment_salesperson`

## Inputs

- `email_body_salesperson_label` — Email Body Salesperson Label (expression)
  Optional literal value or workflow expression.
- `provider_name` — Provider Name (expression)
  Optional literal value or workflow expression.
- `referral_source_name` — Referral Source Name (expression)
  Optional literal value or workflow expression.
- `clinic_name` — Clinic Name (expression)
  Optional literal value or workflow expression.
- `npi` — Npi (expression)
  Optional literal value or workflow expression.
- `explicit_salesperson_label` — Explicit Salesperson Label (expression)
  Optional literal value or workflow expression.

## Outputs

- `success` — Success
- `resolved` — Resolved
- `salesperson_name` — Salesperson Name
- `salesperson_id` — Salesperson Id
- `mapping_id` — Mapping Id
- `matched_key_type` — Matched Key Type
- `match_type` — Match Type
- `review_required` — Review Required
- `review_reason` — Review Reason
- `error` — Error

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

```json
{
  "type": "object",
  "properties": {
    "npi": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "clinic_name": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "provider_name": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "referral_source_name": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "explicit_salesperson_label": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "email_body_salesperson_label": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    }
  },
  "additionalProperties": false
}
```

### Output schema

```json
{
  "type": "object",
  "properties": {
    "error": {},
    "success": {},
    "resolved": {},
    "mapping_id": {},
    "match_type": {},
    "review_reason": {},
    "salesperson_id": {},
    "review_required": {},
    "matched_key_type": {},
    "salesperson_name": {}
  },
  "additionalProperties": true
}
```
