> For the complete documentation index, see [llms.txt](https://docs.accurascan.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.accurascan.com/language/cordova/functions/mrz.md).

# MRZ

### The method use to Start MRZ scanning is

<pre><code><strong>accura.startMRZ(accuraConfigs, mrzType, function (result), function (error));
</strong></code></pre>

### *Parameters*

**accuraConfs**: {'enableLogs':false}, **mrzType**: String(e.g. other\_mrz, passport\_mrz, id\_mrz, visa\_mrz)&#x20;

### ***Response:***

**Success:** JSON String Response

**Error:** String

#### Example function:

```
function startMRZ() {

     var accuraConfigs = {};
     accura.startMRZ(accuraConfigs, mrzSelected, function (result) {
          //Result from the SDK
     }, function (error) {
         alert(error)
     })
}
```
