# Acquire Claim Processing Marker

> Perform Acquire Claim Processing Marker through NikoHealth.

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

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

- Handler: `nikohealth_acquire_claim_processing_marker`

- Connection type: `nikohealth`

## Inputs

- `claim_id` — Claim Id (expression)
  Optional literal value or workflow expression.
- `marker_id` — Marker Id (expression)
  Optional literal value or workflow expression.
- `order_id` — Order Id (expression)
  Optional literal value or workflow expression.
- `patient_id` — Patient Id (expression)
  Optional literal value or workflow expression.
- `run_id` — Run Id (expression)
  Optional literal value or workflow expression.
- `note_subject` — Note Subject (expression)
  Optional literal value or workflow expression.
  Default: `"GenHealth Claim Processing Marker"`
- `marker_prefix` — Marker Prefix (expression)
  Optional literal value or workflow expression.
  Default: `"GENHEALTH_CLAIM_PROCESSING"`
- `stale_after_minutes` — Stale After Minutes (number)
  Optional numeric value.
  Default: `360`
- `allow_stale_recovery` — Allow Stale Recovery (boolean)
  Optional true-or-false value.
  Default: `true`
- `block_draft_saved` — Block Draft Saved (boolean)
  Optional true-or-false value.
  Default: `false`
- `block_failed` — Block Failed (boolean)
  Optional true-or-false value.
  Default: `false`
- `block_partial_draft_saved` — Block Partial Draft Saved (boolean)
  Optional true-or-false value.
  Default: `false`
- `verify_no_concurrent_markers` — Verify No Concurrent Markers (boolean)
  Optional true-or-false value.
  Default: `false`
- `dry_run` — Dry Run (boolean)
  Optional true-or-false value.
  Default: `false`

## Outputs

- `success` — Success
- `acquired` — Acquired
- `skipped` — Skipped
- `skip_reason` — Skip Reason
- `marker_written` — Marker Written
- `dry_run` — Dry Run
- `claim_id` — Claim Id
- `order_id` — Order Id
- `patient_id` — Patient Id
- `run_id` — Run Id
- `status` — Status
- `stale_processing_replaced` — Stale Processing Replaced
- `collision_detected` — Collision Detected
- `processing_contender_count` — Processing Contender Count
- `existing_marker` — Existing Marker
- `error` — Error

Output schema completeness: `best_effort_declared`

## Safety

- External effect: `write`
- Confirmation recommended: no
- Retry safe: no
- Dry run supported: yes

## Schemas

These schemas are first-pass authoring guidance. Runtime validation remains authoritative.

### Input schema

```json
{
  "type": "object",
  "properties": {
    "run_id": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "dry_run": {
      "type": "boolean",
      "default": false,
      "description": "Optional true-or-false value.",
      "x-workflow-field-type": "boolean"
    },
    "claim_id": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "order_id": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "marker_id": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "patient_id": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "block_failed": {
      "type": "boolean",
      "default": false,
      "description": "Optional true-or-false value.",
      "x-workflow-field-type": "boolean"
    },
    "note_subject": {
      "default": "GenHealth Claim Processing Marker",
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "marker_prefix": {
      "default": "GENHEALTH_CLAIM_PROCESSING",
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "block_draft_saved": {
      "type": "boolean",
      "default": false,
      "description": "Optional true-or-false value.",
      "x-workflow-field-type": "boolean"
    },
    "stale_after_minutes": {
      "type": "number",
      "default": 360,
      "description": "Optional numeric value.",
      "x-workflow-field-type": "number"
    },
    "allow_stale_recovery": {
      "type": "boolean",
      "default": true,
      "description": "Optional true-or-false value.",
      "x-workflow-field-type": "boolean"
    },
    "block_partial_draft_saved": {
      "type": "boolean",
      "default": false,
      "description": "Optional true-or-false value.",
      "x-workflow-field-type": "boolean"
    },
    "verify_no_concurrent_markers": {
      "type": "boolean",
      "default": false,
      "description": "Optional true-or-false value.",
      "x-workflow-field-type": "boolean"
    }
  },
  "additionalProperties": false
}
```

### Output schema

```json
{
  "type": "object",
  "properties": {
    "error": {},
    "run_id": {},
    "status": {},
    "dry_run": {},
    "skipped": {},
    "success": {},
    "acquired": {},
    "claim_id": {},
    "order_id": {},
    "patient_id": {},
    "skip_reason": {},
    "marker_written": {},
    "existing_marker": {},
    "collision_detected": {},
    "stale_processing_replaced": {},
    "processing_contender_count": {}
  },
  "additionalProperties": true
}
```
