# Update Signature Status

> Perform Update Signature Status through NikoHealth.

Source: [https://genhealth.ai/docs/workflows/integrations/nikohealth/nikohealth_update_signature_status](https://genhealth.ai/docs/workflows/integrations/nikohealth/nikohealth_update_signature_status)

Integration: [NikoHealth](https://genhealth.ai/docs/workflows/integrations/nikohealth.md)

- Handler: `nikohealth_update_signature_status`

- Connection type: `nikohealth`

## Inputs

- `patient_id` — Patient Id (text, required)
  Required text value.
- `signature_status` — Signature Status (select)
  Optional selected identifier or value.
  Default: `"Reviewed"`
  Options: Reviewed ("Reviewed"), Signed ("Signed")

## Outputs

- `success` — Success
- `skipped` — Skipped
- `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"
  ],
  "properties": {
    "patient_id": {
      "type": "string",
      "description": "Required text value.",
      "x-workflow-field-type": "text"
    },
    "signature_status": {
      "enum": [
        "Reviewed",
        "Signed"
      ],
      "type": "string",
      "default": "Reviewed",
      "description": "Optional selected identifier or value.",
      "x-workflow-field-type": "select"
    }
  },
  "additionalProperties": false
}
```

### Output schema

```json
{
  "type": "object",
  "properties": {
    "error": {},
    "skipped": {},
    "success": {}
  },
  "additionalProperties": true
}
```
