# Ensure Consignment ClaimSoft Guarantor

> Perform Ensure Consignment ClaimSoft Guarantor through Consignment Intake.

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

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

- Handler: `ensure_consignment_claimsoft_guarantor`

- Connection type: `claimsoft`

## Inputs

- `patient_id` — Patient Id (expression, required)
  Required literal value or workflow expression.
- `order_id` — Order Id (expression, required)
  Required literal value or workflow expression.
- `patient_data` — Patient Data (expression, required)
  Required literal value or workflow expression.
- `guarantor_data` — Guarantor Data (expression, required)
  Required literal value or workflow expression.
- `extracted_fields` — Extracted Fields (expression, required)
  Required literal value or workflow expression.
- `as_of_date` — As Of Date (date, required)
  Required date in YYYY-MM-DD format.

## Outputs

- `success` — Success
- `order_id` — Order Id
- `guarantor_id` — Guarantor Id
- `outcome` — Outcome
- `relationship_id` — Relationship Id
- `same_as` — Same As
- `message` — Message
- `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": [
    "patient_id",
    "order_id",
    "patient_data",
    "guarantor_data",
    "extracted_fields",
    "as_of_date"
  ],
  "properties": {
    "order_id": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "as_of_date": {
      "type": "string",
      "format": "date",
      "description": "Required date in YYYY-MM-DD format.",
      "x-workflow-field-type": "date"
    },
    "patient_id": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "patient_data": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "guarantor_data": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "extracted_fields": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    }
  },
  "additionalProperties": false
}
```

### Output schema

```json
{
  "type": "object",
  "properties": {
    "error": {},
    "message": {},
    "outcome": {},
    "same_as": {},
    "success": {},
    "order_id": {},
    "error_kind": {},
    "guarantor_id": {},
    "relationship_id": {}
  },
  "additionalProperties": true
}
```
