# Find Disciplined Licensees by State Board

**Use case:** 

Pull licensees with a disciplinary history from Washington DOH and Colorado DORA: action type, case number, effective date and license status.

## Input

```json
{
  "states": [
    "WA-DOH",
    "CO-DORA"
  ],
  "lastName": "Threlkeld",
  "firstName": "Judson",
  "onlyDisciplined": true,
  "statusOnly": false,
  "screenExclusions": true,
  "npiLookup": true,
  "checkDiscipline": true,
  "maxResults": 5,
  "rosterLimitPerBoard": 100
}
```

## Output

```json
{
  "verdict": {
    "label": "Verdict",
    "format": "string"
  },
  "roster_first_name": {
    "label": "Roster: first name searched",
    "format": "string"
  },
  "roster_last_name": {
    "label": "Roster: last name searched",
    "format": "string"
  },
  "license_no": {
    "label": "Roster: license number (best match)",
    "format": "string"
  },
  "license_type": {
    "label": "License type / profession",
    "format": "string"
  },
  "license_status": {
    "label": "Roster: license status (best match)",
    "format": "string"
  },
  "is_active": {
    "label": "Is active",
    "format": "boolean"
  },
  "expiration_date": {
    "label": "Expiration date",
    "format": "string"
  },
  "match_score": {
    "label": "Match score",
    "format": "number"
  },
  "match_tier": {
    "label": "Match tier",
    "format": "string"
  },
  "oig_excluded": {
    "label": "OIG excluded",
    "format": "boolean"
  },
  "board_action_found": {
    "label": "Board action found",
    "format": "boolean"
  },
  "board_id": {
    "label": "Board ID",
    "format": "string"
  },
  "state": {
    "label": "State",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [License Verification API — Nurses, MDs & OIG Exclusions](https://apify.com/malonestar/license-verifier) with a specific input configuration. Visit the [Actor detail page](https://apify.com/malonestar/license-verifier) to learn more, explore other use cases, and run it yourself.