# Save Guarantor

> Perform Save Guarantor through ClaimSoft.

Source: [https://genhealth.ai/docs/workflows/integrations/claim-soft/claimsoft_save_guarantor](https://genhealth.ai/docs/workflows/integrations/claim-soft/claimsoft_save_guarantor)

Integration: [ClaimSoft](https://genhealth.ai/docs/workflows/integrations/claim-soft.md)

- Handler: `claimsoft_save_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.
- `first_name` — First Name (text, required)
  Required text value.
- `last_name` — Last Name (text, required)
  Required text value.
- `relationship_id` — Relationship Id (expression, required)
  Required literal value or workflow expression.
- `date_of_birth` — Date Of Birth (text)
  Optional text value.

## Outputs

- `success` — Success
- `order_id` — Order Id
- `guarantor_id` — Guarantor Id
- `outcome` — Outcome
- `relationship_id` — Relationship Id
- `same_as` — Same As
- `message` — Message
- `error_kind` — Error Kind
- `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",
  "required": [
    "patient_id",
    "order_id",
    "first_name",
    "last_name",
    "relationship_id"
  ],
  "properties": {
    "order_id": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "last_name": {
      "type": "string",
      "description": "Required text value.",
      "x-workflow-field-type": "text"
    },
    "first_name": {
      "type": "string",
      "description": "Required text value.",
      "x-workflow-field-type": "text"
    },
    "patient_id": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "date_of_birth": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "relationship_id": {
      "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
}
```
