# Resolve Consignment Billing Location

> Perform Resolve Consignment Billing Location through Consignment Intake.

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

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

- Handler: `resolve_consignment_billing_location`

## Inputs

- `billing_location` — Billing Location (expression, required)
  Required literal value or workflow expression.

## Outputs

- `success` — Success
- `resolved` — Resolved
- `billing_location` — Billing Location
- `matched_name` — Matched Name
- `billing_location_id` — Billing Location Id
- `billing_location_ids` — Billing Location Ids
- `review_required` — Review Required
- `review_reason` — Review Reason
- `available_locations` — Available Locations
- `error` — Error
- `error_kind` — Error Kind

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",
  "required": [
    "billing_location"
  ],
  "properties": {
    "billing_location": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    }
  },
  "additionalProperties": false
}
```

### Output schema

```json
{
  "type": "object",
  "properties": {
    "error": {},
    "success": {},
    "resolved": {},
    "error_kind": {},
    "matched_name": {},
    "review_reason": {},
    "review_required": {},
    "billing_location": {},
    "available_locations": {},
    "billing_location_id": {},
    "billing_location_ids": {}
  },
  "additionalProperties": true
}
```
